@charset "utf-8";

.fx {
    display: flex;
}

#header {
    position: absolute;
    width: 100%;
    background-color: #334289;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    height: 72px;
    box-sizing: border-box;
    padding: 0 24px;
    justify-content: space-between;
    align-items: center;
}

#header .main_logo a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
}

#gnb {
    align-items: center;
    gap: 24px;
}

#gnb a {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

#gnb .material-symbols-rounded {
    color: #fff;
}

#container {
    /*padding-top: 72px;*/
    box-sizing: border-box;
    background: no-repeat left top / cover url("../main_fullbg.jpg");
    height: 100vh;
}

#snb {
    width:300px;
    border-right: 1px solid rgba(149,75,240,0.2);
    box-sizing: border-box;
    background-color: #060A2A;
    height: 100vh;
    overflow-y: scroll;
}

#contents {
    /*width: calc(100vw - 300px);*/
    padding:2.5rem;
    box-sizing: border-box;
    gap: 1.5rem;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.sub_tit {
    justify-content: space-between;
    align-items:baseline;
}

.sub_tit h2 {
    /*font-size:2.8rem;*/
    font-size:1.25rem;
    font-weight:600 !important;
    color: #fff !important;
    line-height: 1.375rem !important;
    margin-bottom: 0 !important;
}

.sub_tit.pdB {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(149,75,240,0.2);
}

.sub_tit.pdT {
    padding-top: 2.5rem;
}

.bread {
    align-items: center;
    gap: 0.25rem;
    /*font-size: 1.5rem;*/
    font-size: 0.875rem;
    margin-bottom: 0 !important;
    color: rgba(255,255,255,0.5);
    padding-left: 0 !important;
}

.bread .material-symbols-rounded {
    color: #999;
    font-size:0.875rem;
}

.board_top {
    background-color: #060a2a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-size: 87.5%;
    gap: 2.5rem;
}

.board_top.fx {
    justify-content: space-between;
    align-items: center;
}

.board_top form.fx {
    gap: 1rem;
    align-items: center;
}

.board_top .check > div {
    display: flex;
    gap: 1rem;
}

.board_top .check label {
    margin-bottom: 0 !important;
    line-height: 1.375rem !important;
}

/* form starting stylings */
input[type="text"], input[type="password"] {
    padding:0.375rem 0.5rem !important;
    display:block;
    width:300px;
    border:1px solid rgba(149,75,240,0.2) !important;
    border-radius: 4px;
    color: #fff;
    background-color: rgba(59,34,129,0.2) !important;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

div.dt-container .dt-search input {    
    border:1px solid rgba(149,75,240,0.2) !important;
    border-radius: 0.25rem !important;
}

div.dt-container .dt-search input:focus, input:focus {
    border:1px solid rgba(149,75,240,0.4) !important;
}

input[type="search"] {
    border:1px solid rgba(149,75,240,0.2) !important;
    background-color: rgba(59,34,129,0.2) !important;
    color: #fff !important;
}

table input[type="text"], table input[type="password"] {
    padding:0.125rem 0.25rem !important;
}

input[type="text"]:hover, input[type="password"]:hover { 
    outline:none;
}

input[type="text"]:focus, input[type="password"]:focus { 
    outline:none;
}

input::placeholder {
    color: rgba(255,255,255,1) !important;
}

input:disabled {
    background-color: rgba(59,34,129,0.4) !important;
    color: rgba(255,255,255,0.5) !important;
}

/* checkbox */
.check {
    position: relative;
}

.check span {
    color: #d74274;
    line-height: 1.375rem !important;
    position: relative;
    margin-left: 3rem !important;
}

.check span::before {
    position: absolute;
    left: -1.5rem;
    top: 0;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
}

.board_top form.fx div:first-of-type span {
    margin-left: 0 !important;
}

.board_top form.fx div:first-of-type span:before {
    display: none;
}

.check.fx {
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem;
}

input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]+label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: #fff;
}

.check > div >div:last-of-type label {
    margin-bottom: 0 !important;
}

input[type="checkbox"]+label:before {
    content: '';
    display: inline-block;
    border-radius: 2px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    margin: 0 8px 0 0;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(59,34,129,0.2);
    border: 1px solid rgba(149,75,240,0.2);
    position: relative;
    top: -1px;
}

input[type="checkbox"]:checked+label:before {
    content: '\f00c';
    font-family: "FontAwesome";
    color: #fff;
    background-color: #3B2281;
    border: 1px solid #3B2281;
    font-size: 0.75rem;
}

.con_box {
    background-color: rgba(6,10,42,1);
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-size: 87.5%;
    color: rgba(255,255,255,1);
}

.con_box h3 span {
    top: 50% !important;
    transform: translate(0, -50%);
}

.btn_box {
    gap: 1rem;
}

.btn.pd1 {
    padding: 0.125rem 0.25rem !important;
    margin-bottom: 0 !important;
}

.btn_group_box {
    justify-content: space-between;
    gap: 1.6rem;
    margin-top: 2.4rem;
}

.btn_group {
    gap: 1.6rem;
}

.btn_blue {
    cursor: pointer;
    background-color: rgba(0,123,255,0.2);
    color: #007bff;
    border:1px solid rgba(0,123,255,0.2);
    border-radius:4px;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 0.875rem;
    padding: 2px 4px;
    font-weight: 500;
    transition: .3s;
}

.btn_blue:hover {
    border:1px solid rgba(0,123,255,1);
    background-color:rgba(25,118,210,0.04);
}

.btn_red {
    cursor: pointer;
    background-color: rgba(255, 90, 101, 0.2);
    color: #FF5A65;
    border:1px solid rgba(255, 90, 101, 0.2);
    border-radius:4px;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 0.875rem;
    padding: 2px 4px;
    font-weight: 500;
    transition: .3s;
}

.btn_red:hover {
    border:1px solid rgba(185, 27, 27, 1);
    background-color:rgba(25,118,210,0.04);
}

.btn_orange {
    cursor: pointer;
    background-color: rgba(255, 176, 22, 0.2);
    color: #FDB52A;
    border:1px solid rgba(255, 176, 22, 0.2);
    border-radius:4px;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 0.875rem;
    padding: 2px 4px;
    font-weight: 500;
    transition: .3s;
}

.btn_orange:hover {
    border:1px solid rgb(255, 176, 22);
    background-color:rgba(25,118,210,0.04);
}

.btn_green {
    cursor: pointer;
    background-color: rgba(5, 193, 104, 0.2);
    color: #14CA74;
    border:1px solid rgba(5, 193, 104, 0.2);
    border-radius:4px;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 0.875rem;
    padding: 2px 4px;
    font-weight: 500;
    transition: .3s;
}

.btn_green:hover {
    border:1px solid rgb(5, 193, 104);
    background-color:rgba(25,118,210,0.04);
}

.btn_gray {
    cursor: pointer;
    background-color: rgba(174, 185, 225, 0.2);
    color: #AEB9E1;
    border:1px solid rgba(174, 185, 225, 0.2);
    border-radius:4px;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 0.875rem;
    padding: 2px 4px;
    font-weight: 500;
    transition: .3s;
}

.btn_gray:hover {
    border:1px solid rgb(174, 185, 225);
    background-color:rgba(25,118,210,0.04);
}


/* snb */
#snb .material-symbols-rounded.tit_icon {
    font-variation-settings: 'FILL' 1;
    font-size: 0.875rem;
    color: #B5AEE1;
    transition: all .3s ease;    
    line-height: 1 !important;
}

ul.sidenav {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    padding-bottom: 1.75rem;
    margin: 0 !important;
}

.sidenav a, .dropdown-btn {
    padding: 0.875rem 0;
    color: #B5AEE1;
    display: flex;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    transition: all .3s ease;
}

.dropdown-btn {
    position: relative;
    border: none;
    outline: none;
    font-family: 'Pretendard Variable', sans-serif !important;
    /*font-size: 1.6rem;*/
    font-size: 0.9375rem;
    transition: all .3s ease;
    font-weight: 600 !important;
    align-items: center;
}

.dropdown-btn i {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform:rotate(0deg) translateY(-50%);
    transform-origin: center top;
    color:#B4AEE1;
    font-size: 0.875rem;
    line-height: 1;
    transition: all .3s ease;
}

.dropdown-btn span {
    line-height: 1rem;
}

.dropdown-btn.active, .dropdown-btn.active .tit_icon, .dropdown-btn:hover, .dropdown-btn:hover .tit_icon, .dropdown-btn:hover i {
    color: #954BF0 !important;
    transition: all .3s ease;
}

.dropdown-btn.active i {
    transform:rotate(180deg) translateY(-50%);
    transform-origin: center top;
    color: #954BF0 !important;
}

.dropdown-container {
    display: block;
    background-color: #060A2A;
    margin-bottom: 0.5rem;
}

.dropdown-container.last {
    margin-bottom: 0 !important;
}

.dropdown-container a {
    color: rgba(255,255,255,1);
    line-height: 1;
    padding: 0.875rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
    font-weight: 500;
}

.dropdown-container a:hover, .dropdown-container a.active {
    background-color: rgba(59, 34, 129, 0.2);
    color: rgba(255,255,255,1);
    transition: all 0.3s ease;
}

.dropdown-container a::after {
    display: block;
    content: "";
    width: 3px;
    height: 100%;
    background-color: #954BF0;
    transform: scale(1, 0);
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    position: absolute;
    border-radius: 0.25rem 0 0 0.25rem;
}

.dropdown-container a:hover::after, .dropdown-container a.active::after {
    transform: scale(1, 1);
    transition: all 0.3s ease;
}

/* Table */
.table_type1 { border-top:1px solid rgba(149,75,240,0.2); border-bottom:1px solid rgba(149,75,240,0.2); overflow-x:auto;}
.table_type1 table, .table_type1 th, .table_type1 td {
    border-top:none; 
    border-collapse:collapse;
    word-break: keep-all
}
.table_type1 th {
    text-align: center;
}
.table_type1 table { 
    width:100%;
}
.table_type1 th, .table_type1 td { 
    padding: 0.75rem;
}
.table_type1 tbody tr:nth-of-type(odd) {
    background-color: rgba(59,34,129,0.1) !important;
}
.table_type1 th {
    border-right: 1px solid rgba(149,75,240,0.2) !important;
}
.table td, .table th {
    vertical-align: middle !important;
}

/* textarea */
textarea {
    border: 1px solid rgba(149,75,240,0.2);
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0.75rem;
    background-color: rgba(59,34,129,0.2);
    color: #fff;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

textarea:focus {
    border: 1px solid rgba(149,75,240,0.4) !important;
    outline: none;
}

textarea:disabled {
    color: rgba(255,255,255,0.5) !important;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #060A2A !important;
  margin: auto;
  padding: 2.5rem;
  width: 1000px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  box-sizing: border-box;
  border: 2px solid #222;
  border-radius: 0.5rem !important;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

.modal-header {
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 2.4rem;
    font-weight: 600;
}

.close:hover,
.close:focus {
  cursor: pointer;
}

/* login */
.login_box {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
}

/*
.login_box::after {   
    position: absolute; 
    left: 0;
    right: 0;
    top: 0;
    content: '';
    background: url('./img/login_bg.png') no-repeat center;
    height: 100%;
    z-index: -1;
    opacity: 15%;
}*/

#login {
    padding: 6.0rem;
    border-radius: 0.5rem;
    text-align: center;
    background: linear-gradient(125deg, #391464, #191552);
}

#login h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}

#login p {
    color: rgba(255,255,255,0.5);
    margin-top: 1.0rem;
    margin-bottom: 5.2rem;
}

#login .btn {
    font-size: 1rem !important;
    font-weight: 600 !important;
}

#login label {
    color: #fff !important;
}

#login input, #login .btn {
    width: 300px !important;
    color: #fff !important;
}

.search {
    text-align: left;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:autofill:focus-visible,
input:-webkit-autofill:active {
	-webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(59,34,129,0.2) inset !important;
    box-shadow: 0 0 0px 1000px rgba(59,34,129,0.2) inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: #fff !important;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:focus-visible,
input:autofill:active {
	-webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(59,34,129,0.2) inset !important;
    box-shadow: 0 0 0px 1000px rgba(59,34,129,0.2) inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: #fff !important;
}


/* input type="file"의 파일 선택 버튼 부분을 타겟팅합니다. */
input[type="file"]::file-selector-button, /* 표준 */
input[type="file"]::-webkit-file-upload-button /* WebKit 브라우저용 */
{
  /* file:mr-4 -> margin-right: 1rem; */
  margin-right: 1rem; /* Tailwind의 mr-4는 기본적으로 16px */

  /* file:py-2 -> padding-top: 0.5rem; padding-bottom: 0.5rem; */
  padding-top: 0.5rem;    /* Tailwind의 py-2는 8px */
  padding-bottom: 0.5rem; /* Tailwind의 py-2는 8px */

  /* file:px-4 -> padding-left: 1rem; padding-right: 1rem; */
  padding-left: 1rem;    /* Tailwind의 px-4는 16px */
  padding-right: 1rem;   /* Tailwind의 px-4는 16px */

  /* file:rounded-full -> border-radius: 9999px; (완전한 원) */
  border-radius: 9999px;

  /* file:border-0 -> border-width: 0px; */
  border-width: 0px;

  /* file:text-sm -> font-size: 0.875rem; line-height: 1.25rem; */
  font-size: 0.875rem; /* Tailwind의 text-sm은 14px */

  /* file:font-semibold -> font-weight: 600; */
  font-weight: 600;

  /* file:bg-blue-50 -> background-color: #EFF6FF; */
  background-color: #EFF6FF; /* 파란색 계열의 매우 연한 색상 */

  /* file:text-blue-700 -> color: #1D4ED8; */
  color: #1D4ED8; /* 파란색 계열의 진한 색상 */

  /* 기본 배경색이 투명할 경우를 대비하여 추가 */
  background-clip: padding-box;
}

/* hover:file:bg-blue-100 -> 호버 시 배경색 변경 */
input[type="file"]::file-selector-button:hover,
input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #DBEAFE; /* Tailwind의 blue-100 */
}

.care_tit {
    padding: 1.75rem;
    padding-top: 2.375rem;
    align-items: center;
    gap: 0.375rem;
}

.care_tit span a {    
    line-height: 1.375rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.care_tit .tit_icon {
    font-size:1.625rem !important;
    color: #D74274 !important;
}

.css-1tyx9qz {
    font-size: 2rem !important;
}

.css-11acm3b {
    background-color: transparent !important;
}

.css-1gx5x1k-MuiTypography-root, .css-ldhus9-MuiTypography-root {
    font-size: 1rem !important;
    color: #fff;
    font-family: 'Pretendard Variable', sans-serif !important;
    line-height: 1.125rem !important;
}

.css-1c24z2y-MuiPaper-root-MuiCard-root {
    background: linear-gradient(125deg, #391464, #191552) !important;
    border: none !important;
    padding: 1.25rem !important;
}

.css-sor6ce-MuiTypography-root {
    color: #fff;
    font-family: 'Pretendard Variable', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.375rem !important;
}

.css-1b7ijme-MuiPaper-root-MuiCard-root, .dashboard-stat-card {
    background: linear-gradient(125deg, #391464, #191552) !important;
    border: none !important;
    padding: 1.25rem !important;
}

.css-28vtkn-MuiStack-root {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
    padding-bottom: 1.5rem !important;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #060A2A; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(59,34,129,0.6); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(59,34,129,0.8); 
}

.css-83slop-MuiPaper-root-MuiCard-root {
    background: linear-gradient(125deg, #391464, #191552) !important;
    border: none !important;
}

.css-1xk15vt-MuiTypography-root {
    color: #fff !important;
    font-family: 'Pretendard Variable', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.css-18t4pgp-MuiStack-root {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1rem !important;
}

.css-jrjilo-MuiTypography-root {
    color: #fff !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.css-1l1n8ba-MuiTypography-root, .css-s6f1cw-MuiTypography-root, .css-otcird-MuiTypography-root, .css-fdg7ix-MuiTypography-root, .css-14upbex-MuiTypography-root {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

.css-n1v23x-MuiChartsLegend-root {
    color: #fff !important;
}

.css-28vtkn-MuiStack-root>:not(style)~:not(style) {
    margin-top: 0 !important;
}

.css-sor6ce-MuiTypography-root {
    margin-top: 2.5rem !important;
}

.css-dv2g0v-MuiPieArc-root {
    stroke: none !important;
}

.css-ci96hy-MuiChartsSurface-root {
    width: 180px !important;
    height: 180px !important;
}

.css-1c5dnkp-MuiChartsGrid-root .MuiChartsGrid-line {
    stroke: rgba(255,255,255,0.5) !important;
}

h3, h2 {
    font-size: 1.25rem !important;
    color: #fff !important;
}

div.dt-container.dt-empty-footer tbody > tr:last-child > * {
    border-bottom:1px solid rgba(149,75,240,0.2) !important;
}

table.table-striped {
    border-top:1px solid rgba(149,75,240,0.2) !important;
}

table.dataTable > thead > tr > th, table.dataTable > thead > tr > td {
    border-bottom:1px solid rgba(149,75,240,0.2) !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color:rgba(59,34,129,0.1) !important;
}

.btn {
    font-size: 0.875rem !important;
    color: #fff !important;
    border: 1px solid #3B2281 !important;
}

.btn.bg1 {
    background-color: #3B2281 !important;
}

.btn.mgL {
    margin-left: 0.5rem !important;
}

div.dt-container div.dt-length select {
    width: 80px !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

.table.dataTable > tbody > tr > th, table.dataTable > tbody > tr > td {
    padding: 0.75rem !important;
}

.modal-title {
    font-size: 1.25rem !important;
    color: #fff !important;
}

.modal-header {
    padding: 0 !important;
    padding-bottom: 1rem !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(149,75,240,0.2) !important;
}

.modal-body {
    padding: 0 !important;
}

.modal-body .table {
    font-size: 87.5% !important;
}

.modal-body .table>:not(caption)>*>* {
    color: #fff !important;
    background-color: transparent !important;
    border-bottom-width: 0 !important;
}

.modal-body .table {
    border-top: 1px solid rgba(149,75,240,0.2) !important;
    border-bottom: 1px solid rgba(149,75,240,0.2) !important;
}

.modal-body .table td, .modal-body .table th {    
    border: none !important;
}

.modal-body .table td:first-of-type {
    border-right: 1px solid rgba(149,75,240,0.2) !important;
}

.modal-header .btn-close {
    filter: invert(80%);
    margin: 0 !important;
}

.modal-body .table tbody tr:nth-of-type(odd) {
    background-color: rgba(59,34,129,0.1) !important;
}

.modal-footer {
    border-top: none !important;
}

.modal-header {
    border-bottom: none !important;
}

.modal-footer {
    padding: 0 !important;
}

.modal-footer>* {
    margin: 0 !important;
}

/*셀렉트 커스텀*/
select,
::picker(select) {
  appearance: base-select !important;
}

select {
  border: 1px solid rgba(149,75,240,0.2) !important;
  background: rgba(59,34,129,0.2) !important;
  padding: 0.375rem 0.5rem !important;
  transition: 0.4s !important;
  color: rgba(255,255,255,1) !important;
  border-radius: 0.25rem !important;
}

select:disabled {
  background: rgba(59,34,129,0.4) !important;
  color: rgba(255,255,255,0.5) !important;
}

table select {
  padding: 0.125rem 0.25rem !important;
  min-width: 6.25rem !important;
}

select:focus {
  box-shadow: none !important;
  border: 1px solid rgba(149,75,240,0.4) !important;
}

select::picker-icon {
  color: #fff !important;
  transition: 0.4s rotate !important;
  opacity: 0.6 !important;
  transform: scale(0.8) !important;
}

select:open {
  border: 1px solid rgba(149,75,240,0.4) !important;
}

select:open::picker-icon {
  rotate: 180deg !important;
}

::picker(select) {
  border: none !important;
}

option {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 0.5rem !important;
  background-color: #110F3C !important;
  padding: 0.375rem 0.5rem !important;
  transition: 0.4s !important;
  color: rgba(255,255,255,1) !important;
  border-left: 1px solid rgba(149,75,240,0.2) !important;
  border-right: 1px solid rgba(149,75,240,0.2) !important;
}

table option {
  padding: 0.125rem 0.25rem !important;
  gap: 0.25rem !important;
}

option:hover,
option:focus {
  background: #1C144D !important;
}

option:first-of-type {
  border-top: 1px solid rgba(149,75,240,0.2) !important;
}

option:last-of-type {
  border-bottom: 1px solid rgba(149,75,240,0.2) !important;
}

option:not(option:last-of-type) {
  border-bottom: none !important;
}

option .icon {
  font-size: 1.6rem !important;
  text-box: trim-both cap alphabetic !important;
}

.form-control-sm {
    height: 2.1875rem !important;
}

div.dt-container .dt-search input {
    padding: 0.375rem 0.5rem !important;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: rgba(149,75,240,0.4) !important;
}

.page-link {
    font-size: 0.875rem !important;
}

.page-link {
    background-color: rgba(59,34,129,0.2) !important;
    border: 1px solid rgba(149,75,240,0.2) !important;
    color: #fff !important;
}

.page-item.active .page-link {    
    background-color: #3B2281 !important;
    border: 1px solid #3B2281 !important;
}

.page-item.disabled .page-link {
    color: rgba(255,255,255,0.5) !important;
}

div.dt-container .dt-paging .dt-paging-button.disabled, div.dt-container .dt-paging .dt-paging-button.disabled:active, div.dt-container .dt-paging .dt-paging-button.disabled:hover {
    border: 1px solid transparent !important;
}

div.dt-container .dt-paging .dt-paging-button:hover {
    border: 1px solid #3B2281 !important;
    background: rgba(59,34,129,0.2) !important;
}

button:focus {
    box-shadow: none !important;
}

.dt-info, .dt-length label, .dt-search label {
    opacity: 0.5 !important;
}

.total_box {
    height: 100%;
}

.total_box h2 {
    margin-bottom: 0 !important;
}

.total_more {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    color: #fff;
    font-size: 1.125rem;
}

.total_box_container {
    border:none !important;
    position: relative !important;
    padding: 1.25rem !important;
}

.css-83slop-MuiPaper-root-MuiCard-root {
    padding: 1.25rem !important;
}

.total_tit_icon {
    font-variation-settings: 'FILL' 1;
    font-size: 1.25rem;
    color: #fff;
}

.total_tit_icon_box {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.15);
    border-radius:40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total_tit_icon_box.green {
    background-color: rgba(5,193,104,0.2);
}

.total_tit_icon_box.yellow {
    background-color: rgba(253,181,42,0.2);
}

.total_tit_icon_box.mint {
    background-color: rgba(19,164,191,0.2);
}

.total_tit_icon_box.red {
    background-color: rgba(239,68,68,0.2);
}

.total_tit_icon_box.green .total_tit_icon {
    color: #05C168;
    font-size: 1rem;
}

.total_tit_icon_box.yellow .total_tit_icon {
    color: #FDB52A;
    font-size: 1rem;
}

.total_tit_icon_box.mint .total_tit_icon {
    color: #13A4BF;
    font-size: 1rem;
}

.total_tit_icon_box.red .total_tit_icon {
    color: #EF4444;
    font-size: 1rem;
}

.css-fdg7ix-MuiTypography-root, .css-14upbex-MuiTypography-root, .css-s6f1cw-MuiTypography-root, .css-1l1n8ba-MuiTypography-root, .css-otcird-MuiTypography-root, .css-n1v23x-MuiChartsLegend-root {
    font-family: 'Pretendard Variable', sans-serif !important;
}

.css-hyr3di-MuiTypography-root, .css-9cda72-MuiChip-root, .css-jrjilo-MuiTypography-root, .css-ptpukv-MuiTypography-root, .css-1qh4s6h-MuiChip-root  {
    font-family: 'Pretendard Variable', sans-serif !important;
}

.css-9cda72-MuiChip-root, .css-1qh4s6h-MuiChip-root {
    color: #fff !important;
    background-color: transparent !important;
    border: 1px solid #fff !important;
}

.css-9cda72-MuiChip-root span, .css-1qh4s6h-MuiChip-root span {
    color: #fff !important;
}

.css-hyr3di-MuiTypography-root {
    color: #3B82F6 !important;
}

.css-ptpukv-MuiTypography-root {
    color: #22C55E !important;
}

.css-hz3jea-MuiChartsAxis-root-MuiChartsXAxis-root .MuiChartsAxis-tickLabel, .css-1rkjr6-MuiChartsAxis-root-MuiChartsYAxis-root .MuiChartsAxis-tickLabel {
    fill: rgba(255,255,255,0.55) !important;
}

.total_num_box h6 {
    margin-top: 0.25rem !important;
}

.css-s6f1cw-MuiTypography-root {
    color:#3B82F6 !important;
}

.css-1l1n8ba-MuiTypography-root {
    color:#22C55E !important;
}

.css-otcird-MuiTypography-root {
    color:#FDB52A !important;
}

.css-fdg7ix-MuiTypography-root, .css-14upbex-MuiTypography-root {
    color:#13A4BF !important;
}

.infobox {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.infobox > div {
    flex-grow: 1;
    height: 100px;
    background: linear-gradient(125deg, #391464, #191552);
    padding: 1.25rem;
    box-sizing: border-box;
    flex-basis: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 0.5rem;
}

.infobox > div p {
    margin-bottom: 0 !important;
}

.infobox.ring > div.info1 p.status, .infobox.ring > div.info2 p.status, .infobox.ring > div.info3 p.status {
    margin-bottom: 0.25rem !important;
}

.infobox.ring > div.info1 p.status span, .infobox.ring > div.info2 p.status span, .infobox.ring > div.info3 p.status span {
    margin-bottom: 0.25rem !important;
    font-size: 1.25rem;
    font-weight: 600;
}

.infobox.medi_cabinet > div.info1 p.status, .infobox.medi_cabinet > div.info2 p.status, .infobox.medi_cabinet > div.info3 p.status, .infobox.medi_cabinet > div.info4 p.status {
    margin-bottom: 0.25rem !important;
}

.infobox.medi_cabinet > div.info1 p.status span, .infobox.medi_cabinet > div.info2 p.status span, .infobox.medi_cabinet > div.info3 p.status span, .infobox.medi_cabinet > div.info4 p.status span {
    margin-bottom: 0.25rem !important;
    font-size: 1.25rem;
    font-weight: 600;
}

.infobox > div div {
    color: #fff;
}

.infobox > div div .desc {
    font-size: 0.875rem;
    font-weight: 400 !important;
    color: #B5AEE1;
}

.infobox.connection > div div .desc {
    color: rgba(255,255,255,0.55);
}

.infobox.health {
    flex-wrap: wrap;
}

.infobox.health > div {
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    width: 50% !important;
    flex-basis: 50% !important;
    flex-grow: 0 !important;
    flex: 0 0 calc(50% - 10px) !important;
}

.infobox.health > div.info1 {
    flex-basis: 100% !important;
}

.infobox.health > div .chartbox {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(149,75,240,0.2);
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 0.25rem; 
}

.infobox.health .health_tit_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: baseline;
}

.infobox.health .health_tit_box .status {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.infobox.health .health_tit_box .status select {
    font-size: 0.875rem;
    padding: 0.125rem 0.25rem !important;
}

.infobox.health .health_tit_box .status select option {
    padding: 0.125rem 0.25rem !important;
    gap: 0.25rem !important;
}

.infobox.health .health_tit_box .status select::picker-icon {
    transform: scale(0.6) !important;
}

.infobox.health .health_tit_box .status > div {
    overflow: visible;
}

.infobox.health .health_tit_box .status span {
    font-size: 0.875rem;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

.infobox.health .health_total {
    display: flex;
    width: 100%;
    gap: 1.25rem;
}

.infobox.health .health_total .score {
    display: flex;
    align-items: center;
    justify-content: center;
}

.infobox.health .health_total .score > div {
    text-align: center;
}

.infobox.health .health_total .score > div .tit {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.infobox.health .health_total .score > div .num {
    font-size: 2.5rem;
    font-weight: 600;
}

.infobox.health .health_total .score > div .desc {
    font-size: 1rem;
}

.infobox.health .health_total .chart {
    box-sizing: border-box;
}

.infobox.health .health_total > div {
    flex-basis: 33.33%;
    border-radius: 0.25rem; 
    background-color: rgba(59,34,129,0.2);
    border: 1px solid rgba(149,75,240,0.2);
}

.infobox.health .health_total .score {
    flex-basis: 28% !important; 
}

.infobox.health .health_total .chart {
    flex-basis: 44% !important;
}

.infobox.health .health_total .figure {
    flex-basis: 28% !important;
}

.infobox.health .health_total > div.figure {
    padding: 1.25rem;
}

.infobox.health .health_total > div.figure > div {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 0.5rem;
    position: relative;
    gap: 0.5rem;
}

.infobox.health .health_total > div.figure > div::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(149,75,240,0.2);
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
}

.infobox.health .health_total > div.figure > div:last-of-type:before {
    display: none;
}

.infobox.connection > div.info1 {
    background: linear-gradient(180deg, #68428F, #321B69);
}

.infobox.connection > div.info2 {
    background: linear-gradient(180deg, #3D8EA1, #226474);
}

.infobox.connection > div.info3 {
    background: linear-gradient(180deg, #D74274, #90103B);
}

.num_box {
    margin-left: auto;
}

.num_box .num {
    font-size: 2.5rem;
    font-weight: 600;
}

.num_box .total {
    font-size: 0.75rem;
    padding-left: 0.25rem;
}


/*상태 텍스트*/
.t_green {    
    color: #22C55E !important;
}
.t_yellow {    
    color: #FDB52A !important;
}
.t_red {    
    color: #FF5A65 !important;
}
.t_gray {    
    color: #AEB9E1 !important;
}
.t_blue {    
    color: #3B82F6 !important;
}
.t_mint {    
    color: #13A4BF !important;
}
.t_pink {    
    color: #D74274 !important;
}


/*상태 텍스트 라인*/
.s_bd_green {
    border: 1px solid rgba(5, 193, 104, 0.2) !important;
}
.s_bd_yellow {
    border: 1px solid rgba(255, 176, 22, 0.2) !important;
}
.s_bd_red {
    border: 1px solid rgba(255, 90, 101, 0.2) !important;
}
.s_bd_gray {
    border: 1px solid rgba(174, 185, 225, 0.2) !important;
}
.s_bd_pink {
    border: 1px solid rgba(215, 66, 116, 0.2) !important;
}


/*상태 텍스트 배경*/
.s_bg_green {
    background-color: rgba(5, 193, 104, 0.2) !important;
}
.s_bg_yellow {    
    background-color: rgba(255, 176, 22, 0.2) !important;    
}
.s_bg_red {    
    background-color: rgba(255, 90, 101, 0.2) !important;    
}
.s_bg_gray {
    background-color: rgba(174, 185, 225, 0.2) !important;
}
.s_bg_pink {
    background-color: rgba(215, 66, 116, 0.2) !important;
}


/*상태 아이콘*/
.ico_green {
    color: #05C168 !important;
}
.ico_yellow {
    color: #FDB52A !important;
}
.ico_red {
    color: #EF4444 !important;
}
.ico_mint {
    color: #13A4BF !important;
}
.ico_gray {
    color: #AEB9E1 !important;
}


/*상태 아이콘 배경*/
.ico_bg_green {
    background-color: rgba(5, 193, 104, 0.2) !important;
}
.ico_bg_yellow {
    background-color: rgba(253, 181, 42, 0.2) !important;
}
.ico_bg_red {
    background-color: rgba(239, 68, 68, 0.2) !important;
}
.ico_bg_mint {
    background-color: rgba(19, 164, 191, 0.2) !important;
}


div.dt-container div.dt-search input {
    margin-left: 0.5rem !important;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    background: #060A2A !important;
}

h2.swal2-title {
    font-size: 1rem !important;
    font-weight: 500 !important;
}

div:where(.swal2-container) button:where(.swal2-styled) {
    padding: 0.4375rem 0.75rem !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel), div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

div:where(.swal2-icon).swal2-question {
    border-color: #13A4BF !important;
    color: #13A4BF !important;
}

div:where(.swal2-icon) {
    width: 3.75rem !important;
    height: 3.75rem !important;
}

div:where(.swal2-icon) .swal2-icon-content {
    font-size: 2.5rem !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
    background-color: transparent !important;
    border: 1px solid #3B2281 !important;
}

div:where(.swal2-container) div:where(.swal2-html-container) {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.5) !important;
}

div:where(.swal2-container) div:where(.swal2-html-container) {
    padding: var(--swal2-title-padding) !important;
}

table td > div:last-of-type label {
    margin-bottom: 0 !important;
}

.card {
    background: linear-gradient(125deg, #391464, #191552) !important;
}

[type="search"]::-webkit-search-cancel-button {
    display: none; /* X 버튼 및 검색 결과 버튼 숨기기 */
}

div.dt-processing > div > div {
    background: #954BF0 !important;
}

div.dt-container div.dt-search input {
    color: #fff !important;
}

.dt-processing.card {
    border: none !important;
}

.logoutbox {
    padding: 1.75rem;
    position: relative;
}

.logoutbox::before {
    position: absolute;
    width: 95%;
    height: 0.0625rem;
    background-color: rgba(149,75,240,0.2);
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    content: '';
}

button.logout .tit_icon {
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 2rem;
    background-color: #D74274;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.logout:hover .tit_icon {
    color: #fff !important;
}

button.logout i {
    transform:rotate(-90deg) translateX(50%);
}

button.logout .txt {
    color: #fff !important;
    transition: all .3s ease;
}

button.logout:hover .txt {
    color: #D74274 !important;
    transition: all .3s ease;
}

button { transition: all .3s ease;}
button:hover { transition: all .3s ease;}

summary {
  background: rgba(6,10,42,0.2);
  padding: 12px;
  cursor: pointer;
  font-size: 14px;
  list-style: none; /* 기본 화살표 제거 */
  position: relative;
}

summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  opacity: 0.6;
}

details[open] summary::after {
  content: '−';
  opacity: 0.6;
}

details > div {
  padding: 12px;
  background: rgba(6,10,42,0.2);
  border-top: 1px solid rgba(6,10,42,0.4);
}

details > div p {    
  font-size: 14px;
  line-height: 1.5;
}




.dropdown-btn {
  background-color: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(5px);
  border-radius: 8px; /* 모서리를 둥글게 깎아 부드러운 느낌 */
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  margin-top: 15px;
}

.card-white {
    background-color: white !important;
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-size: 87.5%;
}



/* 태그+클래스 조합으로 우선순위 극대화 */
input[type="checkbox"].custom-checkbox {
    all: unset !important;
    position: relative !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #FFFFFF !important;
    border-radius: 4px !important;
    background-color: transparent !important;
    visibility: visible !important;
    cursor: pointer !important;
}

input[type="checkbox"].custom-checkbox:checked {
    background-color: #FFFFFF !important;
}

input[type="checkbox"].custom-checkbox:checked::after {
    content: '✔' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #060a2a !important;
    font-size: 14px !important;
    display: block !important;
}

/* OTP 6자리 개별 인풋 — 300px 강제 적용 예외 처리 */
#login .otp-input {
    width: 36px !important;
    height: 40px !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: bold !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 4px !important;
    background: transparent !important;
    color: #fff !important;
    outline: none !important;
}