@charset "utf-8";
@import url('../../font/font.css');

/* ver - 24.05.23  */

/*default*/
* {
    font-family: Pretendard;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6, p{
    margin:0;
    padding:0;
} 
ul, li, dl, dt, dd{
    margin:0;
    padding:0;
    list-style: none;
}
img{
    border:0;
    margin-bottom: 0;
}
a{
    text-decoration: none;
    color:#232323;
}

.cf:after{
    content: "";
    display:block;
    clear:both;
}

body {
  font-family:'Pretendard', 'NotoSansKR', 'sans-serif';
  background:#f5f5f7;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 18px;
}
/*----------- 1126 박한얼 추가*/
.page-box {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.page-controls {
  display: flex;
  align-items: center;
 }
 .download-btn {
   background: #007bff;
   color: #fff;
   border: none;
   border-radius: 6px;
   padding: 6px 15px;
   cursor: pointer;
 }
 
 input, select {
   padding: 8px 12px;
   border: 1px solid #ddd;
   border-radius: 6px;
 }
 
 .summary-cards {
   display: flex;
   justify-content: space-between;
   margin-top: 30px;
 }

 .summary-card {
   background: #fff;
   border-radius: 10px;
   padding: 15px 20px;
   flex: 1;
   margin-right: 10px;
 }

 .summary-card:last-child {
   margin-right: 0;
 }

 .summary-card h4 {
   margin-bottom: 10px;
 }

 .summary-card .row:first-of-type {
     background-color:gainsboro;
     padding: 10px;
 }

 /* 두 번째 줄 배경 색상 */
 .summary-card .row:last-of-type {
     background-color: #fafafa;
     padding: 10px;
     border-radius: 0 0 6px 6px;
 }

 .summary-card .row div {
   padding: 6px 10px;
   border-radius: 8px;
   text-align: center;
   flex: 1;
   margin-right: 5px;
   margin-bottom: 5px;
   font-size: 0.9em;
 }

 .summary-card .row div:last-child {
   margin-right: 0;
 }

.wrap {
    margin-left: auto;
    margin-right: auto;

    max-width: 1774px;
}

.keep-all{word-break: keep-all!important;}


/*header*/
header {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    margin-bottom: 30px;
}

header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
header .logo span:first-child {
    font-weight: 900;
    font-size: 37px;
    letter-spacing: -0.07em;
    color: #8a8a8a;
    line-height: 30px;
}
header .logo span:last-child {
    font-weight: 600;
    font-size: 9px;
    letter-spacing: -0.01em;
    color: #8a8a8a;
}

header .left {
    display: flex;
    align-items: center;
    gap: 60px;
}


header .menu {
    display: flex;
    gap: 30px;
}
header .menu > li {
    position: relative;
    padding: 10px;
}
header .menu > li > a {
    font-weight: bold;
    font-size: 20px;
    color: #8a8a8a;
    opacity: 0.9;
}
header .menu li a:hover {
    opacity: 1;
}

header .left .btn-group .btn {
    font-weight: 500;
    font-size: 12px;
    color: #8a8a8a;
    padding: 5px 14px;

    background: rgba(138, 138, 138, 0.4);
    border-radius: 6px;

    opacity: 0.9;
}
header .left .btn-group .btn:hover {
    opacity: 1;
}

/*하위메뉴*/
header .menu .depth-menu {
    position: absolute;
    min-width: 150px;
    width: 100%;
    /*max-width: 이걸로 최대값 정해놓으시면 됩니다.;*/

    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    background: #bebebe;
    border: 1px solid #ccc;
    font-size: 16px;
    display: none;
}
header .menu .depth-menu li a {
    display: block;
    color: #555;
    width: 100%;
    padding: 4px 14px;
}
header .menu .depth-menu li:hover {
    background-color: #1E65AC;

}
header .menu .depth-menu li:hover a {
    color: #fff;
}




/*색상 모음*/
.color-1 {
    color: #1E65AC;
}
.bg-color-1 {
    background-color: #1E65AC;
}

.color-2 {
    color: #E15247;
}
.bg-color-2 {
    background-color: #E15247;
}

.color-3 {
    color: #00A144;
}
.bg-color-3 {
    background-color: #00A144;
}

.color-4 {
    color: #5998B9;
}
.bg-color-4 {
    background-color: #5998B9;
}

.color-5 {
    color: #F5A623;
}
.bg-color-5 {
    background-color: #F5A623;
}



/*card*/
.card {
    padding: 26px 30px 28px;
    border-radius: 20px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    border: unset;
}
.card {
    margin-bottom: 30px;
}

/*타이틀 모음*/
.title-1 {
    font-weight: bold;
    font-size: 20px;
    color: #313131;
    opacity: 0.9;
}

.title-2 {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
}

.text-1 {
    font-weight: normal;
    font-size: 15px;
    line-height: 26px;
    color: #000;
}


.input-title {
    font-weight: normal;
    font-size: 15px;
    color: #262f37;
    padding-left: 4px;
    margin-bottom: 5px;
}

.card-header-title {
    margin: -30px -30px 0;
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 20px 20px 0 0;

    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    font-size: 18px;
}

.etc-text {
    font-weight: normal;
    font-size: 12px;
    color: #1e65ac;

    margin-top: -20px;
    margin-bottom: 30px;
}



/*인풋 폼*/
.form-control {
    font-size: 15px;
    padding: 6px 10px;

    border: unset;
    border-radius: 6px;
    background-color: rgba(157, 157, 157, 0.1);
}

.form-control::placeholder {
    font-size: 15px;
    color: #000;
}
.form-control:focus {
    color: #212529;
    background-color: rgba(157, 157, 157, 0.1);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-text {
    font-size: 15px;
    color: #212529;
    padding: 6px 10px;
	height: 35px;
    border: unset;
    border-radius: 6px;
    background-color: rgba(157, 157, 157, 0.1);
    position: relative;
}

.form-text .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;

    color: #fff;
    background: #1e65ac;
    border-radius: 3px;
    font-weight: normal;
    font-size: 8px;
    opacity: 0.95;
}
.form-text .btn:hover {
    opacity: 1;
}

.form-text .btn:active {
    border: unset;
    background: #1e65ac;
    color: #fff;
    opacity: 1;
}


/*셀렉트 폼*/
.form-select {
    font-size: 15px;
    padding: 6px 10px;

    border: unset;
    border-radius: 6px;
    background-color: rgba(157, 157, 157, 0.1);
}


/*sort-radio----------------------------nyl*/

.sort-group {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-direction: row;
}

.sort {
  padding: 8px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f8f9fa;
  cursor: pointer;
}

 
/*   
.sort.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

 */ 
.sort-radio input[type="radio"] {
    display: none;
}

.sort-radio span {
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 6px;
    background: #f1f1f1;
    font-size: 0.9em;
}

.sort-radio input[type="radio"]:checked + span {
    background: #000;
    color: #fff;
    border-color: #000;
}
/*---------------------------------------------------*/



/*btn*/
.btn-1 {
    border-radius: 8px;
    background: #393939;
    padding: 5px 15px;

    font-weight: bold;
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
}   
.btn-1:hover {
    opacity: 1;
    background-color: #393939;
    color: #fff;
}

.btn-2 {
    border-radius: 8px;
    background: #1e65ac;
    padding: 5px 15px;

    font-weight: bold;
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
}   
.btn-2:hover {
    opacity: 1;
    background-color: #1e65ac;
    color: #fff;
}




/*board*/

.board {
    margin-bottom: 30px;
}

.board .top {
    margin-bottom: 16px;
    display: flex;
    border-bottom: 1px solid #aaa;
    padding: 10px 0;
}
.board .obj-label {
    font-size: 15px;
    color: #aaa;
    flex: 1;
    text-align: center;
}

/*이걸로 너비 조정가능*/
.board .obj-label-01 {
    flex: 2 !important;
}

.board .object {
    width: 100%;
    display: flex;
    border-radius: 20px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    background: #fff;

    padding: 38px 0;
}
.board .object:not(:last-child) {
    margin-bottom: 10px;
}

.board .object > div {
    flex: 1;
    text-align: center;
    font-weight: normal;
    font-size: 15px;
    color: #000;
}





/*page-navi*/
.page-navigation {
    display: flex;
    justify-content: center;

    margin-top: 30px;
}
.disabled>.page-link, .page-link.disabled {
    pointer-events: none;
    background-color: #ddd;
    border-color: var(--bs-pagination-disabled-border-color);
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: #fff;
    background-color: #1e65ac;
    border-color:#1e65ac;
}
.page-link {
    font-size: var(--bs-pagination-font-size);
    color:#555;
}


/*custum-table*/
.table-container {
    display: flex;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: flex-start; /* 세로는 상단 정렬, 필요 시 center */
    width: 100%;
}

/*nyl 추가*/

.custom-bordered-table,
.custom-bordered-table th,
.custom-bordered-table td {
    border: 1px solid #dee2e6 !important; /* Bootstrap 기본 테이블 border 컬러 */
}

.custom-bordered-table {
    border-collapse: collapse !important;
}

/* 
.table-container > .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
 */
/*---------*/

.custum-table tr:hover {
    background: rgba(30, 101, 172, 0.08)!important;
}
.custum-table .hover-column {
    background: rgba(30, 101, 172, 0.08)!important;
}
.custum-table tbody, td, tfoot, th, thead, tr {
    border-right-width: 1px;
}

.custum-table th {
    text-align: center;
    vertical-align: middle;
}

.custum-table td > div {
    min-width: 155px;
    min-height: 155px;
} 
.custum-table td > div .obj {
    border-radius: 20px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
    border: 3px solid #fff;

    height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px;
}

.custum-table td:hover > div .obj {
    border: 3px solid #1e65ac;
} 

.custum-table td > div .obj > div {
    font-weight: normal;
    font-size: 14px;
    color: #000;
}
.custum-table caption {
    display: table-caption !important;
    caption-side: top !important;
	text-align: center;
	color: #000;
}



:root {
    --active-color: #43ADFF;
} 

.data-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.data-table th {
  background: #f8f9fa;
  padding: 10px;
  font-size: 0.9em;
  text-align: center;
}

.data-table td {
  border: none;
  background: #fff;
  padding: 10px;
  text-align: center;
}
.container {
  padding: 50px;
}

h2 {
  margin-bottom: 20px;
  font-size: 1.4em;
}

.search-panel {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  flex-direction: row;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.form-group label {
  font-size: 0.85em;
  margin-bottom: 4px;
  color: #666;
  margin-right: 4px;
}

.status-badges {
  display: flex;
  gap: 10px;
}

.badge {
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  line-height: 1.4;
  font-size: 0.9em;
}

.badge.red { background: #e74c3c; }
.badge.blue { background: #3498db; }

.search-flex-box {
    display: flex;
    align-items: center;
    gap: 20px; /* 조회버튼과 배지 사이 간격 */
}

/*배모양*/
.ship-wrapper {
    position: relative;
    width: 300px;  /* 원하는 크기로 조절 */
    height: auto;
	margin: 0 auto;
}

.ship-gray {
    width: 100%;
    display: block;
	
}

.ship-color {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;   /* gray와 크기를 강제로 일치 */
    object-fit: fill;
    z-index: 2;
    clip-path: inset(0 0 0 0);
}

/*state-card*/
.large-state-card {
    width: 100%;
    border-radius: 20px;
    padding: 6px;
    margin-bottom: 30px;
	height: 100%;
	
}
.large-state-card .bg {
    width: 100%;
    border-radius: 20px;
	height: 100%;
    border-radius: 16px;
    padding: 22px 26px;
    color: #fff;
	
}

.large-state-card .bg > .d-flex {
    padding: 22px;
}
.large-state-card .head-tit {
    font-weight: 600;
    font-size: 26px;
    color: #fff;
    opacity: 0.8;    
}
.large-state-card .tit {
    font-weight: bold;
    font-size: 46px;
    line-height: 40px;
    margin-top: 5px;
    margin-bottom: 50px;
    color: #fff;    
}
.large-state-card .border-obj {
    width: 100%;
    height: 4px;
    background: #fff;
    opacity: 0.57;
    margin-bottom: 40px;
}
.large-state-card .txt {
    font-weight: normal;
    font-size: 20px;
    color: #fff;
    opacity: 0.8;
}

.small-state-card {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 6px;
    margin-bottom: 30px;
}
.small-state-card .bg {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 16px;
    color: #fff;
}
.small-state-card .left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.small-state-card .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.small-state-card .border-obj {
    width: 4px;
    height: 30px;
    background: #fff;
    opacity: 0.57;
}
.small-state-card .head-tit {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    opacity: 0.8;    
}
.small-state-card .tit {
    font-weight: bold;
    font-size: 27px;
    color: #fff;
}
.small-state-card .txt {
    font-weight: normal;
    font-size: 21px;
    color: #fff;
    opacity: 0.8;
}



.large-state-card.card-01,
.small-state-card.card-01 {
    background: rgba(0, 161, 68, 0.2);
}
.large-state-card.card-01 .bg,
.small-state-card.card-01 .bg {
    background: #00a144;
}

.large-state-card.card-02,
.small-state-card.card-02 {
    background: rgba(225, 82, 71, 0.2);
}
.large-state-card.card-02 .bg,
.small-state-card.card-02 .bg {
    background: #e15247;
}

.large-state-card.card-03,
.small-state-card.card-03 {
    background: rgba(89, 152, 185, 0.2);
}
.large-state-card.card-03 .bg,
.small-state-card.card-03 .bg {
    background: #5998b9;
}

.large-state-card.card-04,
.small-state-card.card-04 {
    background: rgba(245, 166, 35, 0.2);
}
.large-state-card.card-04 .bg,
.small-state-card.card-04 .bg {
    background: #F5A623;
}

.large-state-card.card-05,
.small-state-card.card-05 {
    background: grey;
}
.large-state-card.card-05 .bg,
.small-state-card.card-05 .bg {
    background: grey;
}

.table-scroll {
    max-height: 300px;        /* 원하는 높이로 조정 */
    overflow-y: auto;
    overflow-x: hidden;
}

/* 모든 셀 같은 너비로 */

.equal-table th,
.equal-table td {
    width: 150px;             /* 원하는 고정 너비 */
    text-align: center;
    white-space: nowrap;      /* 줄바꿈 방지 */
}

/*nyl 추가*/
.equal-table-white-sp th,
.equal-table-white-sp td {
    width: 150px;
    text-align: center;
    white-space: normal;
}
/*-------*/

.card,
.large-state-card,
.table-card {
    height: 90%;
}
