@import 'style.css';

html, body {
    font-family: 'Pretendard', serif;
    font-size: 14px;
    min-height: 100vh;
}

.w-100{
    width: 100%;
}

.default-height {
    height: 56px;
    line-height: 56px;
}

.default-padding {
    padding: 0 16px;
}

img.profile {
    width: 64px;
    height: 64px;
}

.font-title {
    font-size: 20px!important;
    font-weight: bolder;
}

header > a {
    display: inline-block;
    width: 48px;
    text-align: center;
}


.form-control{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    width: auto;
    color: #B7B7B7;
    background-color: #FFFFFF;
    border: 1px solid #B7B7B7;
    border-radius: 1px;
    padding: 1rem 1rem;
    background-clip: padding-box;
}

.btn:disabled {
    border: none;
}

.form-control:focus {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    width: auto;
    color: #000000;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    padding: 1rem 1rem;
    background-clip: padding-box;
}

.custom-form-control {
    display: block;
    width: 100%;
    padding: 1rem 2.5rem 1rem 1rem; /* 오른쪽 여백 추가 */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #F6F6F6;
    background-clip: padding-box;
    border: 1px solid #F6F6F6;
    border-bottom: 1px solid #AFAFAF;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

select.custom-form-control {
    appearance: none;
    background: #F6F6F6 url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="gray"><path d="M1.5 6l6 6 6-6H1.5z"/></svg>') no-repeat right 1rem center;
    background-size: 1rem;
    padding-right: 2rem; /* 화살표 공간 확보 */
}

.btn-padding {
    padding: 12px 16px
}

.btn:disabled{
    background-color: #B7B7B7;
    color: #FFFFFF;
}

.btn-gray{
    background-color: #B7B7B7;
    color: #FFFFFF;
}


.footer-btn-area{
    width: 100%;
    height: 114px;
    margin-top: 50px;
}

.footer-btn-area button{
    height: 48px;
}


/* index.html*/

.notification-on {
    position:absolute;
    right: 9px;
}

.information-title {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.information-box {
    background-color: #EFF3FE;
    border:1px solid #D4E2FC;
    align-items: center;
}

.index-nav .nav-link {
    border: 0;
    color: #CBCBCB;
    border-bottom: 2px #CBCBCB;
}

.index-nav .nav-link.active {
    border-bottom: 2px solid #276EF1;
    color: black;
    font-weight: 700;
}

.index-nav-content {
    background-color: #F6F6F6;
}

.nav-notice {
    background-color: white;
    border-radius: 100px;
}

.nav-notice .icon-checklist{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #66D19E;
}

.nav-notice .icon-contract{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #E2B4D3;
}

.nav-notice .icon-dining{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #FFE3AC;
}

.nav-notice .icon-info{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #c0c0c0;
}

.attend-list-box{
    /*max-width: 68vw;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-button {
    width: 56px;
    height: 56px;
    align-items: center;
    position: fixed;
    bottom: 13%;
    right: 5%;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    background: #276EF1;
    border: none;
    box-shadow: rgba(255, 255, 255, 0.2) 0 0 0 1px inset, rgba(0, 0, 0, 0.1) 0 4px 6px, rgba(0, 0, 0, 0.15) 0 8px 30px
}

.text-gray-700{
    color : #555555
}

.no-wrap {
    white-space: nowrap;
}

/*-----------------------------*/



/* setting.html */

.setting-box {
    margin: 0 0;
    padding: 3% 0;
    font-size: 16px;
}

.setting-icon-wrapper {
    margin: 5px;
}

.setting-icon-container {
    width: 38px;
    height: 24.75px;
    margin: 5px;
    text-align: center;
}

/*-----------------------------*/


/* alarm.html */

.notice-content {
    font-size: 17px;
    font-weight: bolder;
}

.notice-detail {
    background-color: #F6F6F6;
}

.alarm-badge {
    background-color: #eeeeee;
    color: black;
}

.alarm-category-box-carrot {
    border: 1px solid #f99f7b;
    background-color: #fddfd4;
    padding: 0.35rem;
    color: #993f21;
}

.alarm-category-box-green {
    border: 1px solid #82d9b1;
    background-color: #cce9dd;
    padding: 0.35rem;
    color: #03572f;
}

.alarm-category-box-purple {
    border: 1px solid #d28dbc;
    background-color: #f0dbe9;
    padding: 0.35rem;
    color: #81476d;
}

.alarm-category-box-yellow {
    border: 1px solid #fddda0;
    background-color: #fdf0d7;
    padding: 0.35rem;
    color: #8c7549;
}

.alarm-category-box-blue {
    border: 1px solid #a5c1f7;
    background-color: #d2e0fa;
    padding: 0.35rem;
    color: #2e559d;
}

.alarm-category-box-violet {
    border: 1px solid #c4b9e2;
    background-color: #e1dbf0;
    padding: 0.35rem;
    color: #584882;
}

.alarm-category-box-gray {
    border: 1px solid #e2e2e2;
    background-color: #f0f0f0;
    padding: 0.35rem;
    color: #828282;
}


.setting-list {
    display: flex;
    justify-content: space-between;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.toggle-btn .button {
    position: relative;
    width: 42px;
    height: 24px;
    border-radius: 25px;
    background-color: #ddd;
    transition: all 0.2s;
    cursor: pointer;
}
.toggle-btn .button p {
    width: 72px;
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #777;
    text-align: right;
}
.toggle-btn .inside {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
    transition: all 0.2s;
}
.toggle-btn input:checked ~ label .button {
    background-color: #0d6efd;
}
.toggle-btn input:checked ~ label .button p {
    color: #0d6efd;
}
.toggle-btn input:checked ~ label .button .inside {
    left: 20px;
}

/*-----------------------------*/

/* login.html */

.top-text-service{
    font-size: 16px;
    font-weight: 400;
    color: #78829E;
    line-height: 24px;
}

.top-text-explanation{
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}

.btn-login{
    font-weight: 700;
    font-size: 19px;
    border-radius: 10px;
}

.login-footer-area{
    font-size: 12px;
}
.login-footer-area a{
    text-decoration-line: none;
}

.timer{
    position: absolute;
    right: 10px;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF554A;
}


/*-----------------------------*/

/* first-connection-child */
.child-list-area{
    height: 55vh;
    overflow-y: scroll;
    padding: 5%;
}

.toast-area{
    bottom: 15vh;
    align-items: center;
}

.toast{
    background-color: #888888;
}

/*-----------------------------*/

/* weekly-immerse.html */

.week-immerse-date{
    background-color: #F6F6F6;
    border-bottom: 1px solid #6B6B6B !important;
    border-radius: 4px 4px 0 0;
    color: black; height: 48px;
}

.student-info-box{
    border-color: #6B6B6B !important;
}

.student-chart-box{
    width: 8px;
    height: 8px;
    background-color: #007AFF;
    margin-right: 6px;
}

.average-chart-box{
    width: 8px;
    height: 8px;
    background-color: #F6F6F6;
    margin-right: 6px;
}

.chart-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* 파이어폭스용 */
}

.chart-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.chart-wrapper {
    min-width: 600px;
    height: 300px;
}

.custom-table {
    border-radius: 8px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #000;
}

.custom-table thead th {
    padding: 6px 12px;
    text-align: center;
    background-color: #F8F9FA;
    font-weight: 600;
    vertical-align: middle;
}

.custom-table td {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}

.custom-table td br + small {
    display: block;
    margin-top: 4px;
}

.custom-table th,
.custom-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-table th:last-child,
.custom-table td:last-child {
    border-right: none;
}

.custom-table tbody tr:last-child td {
    border-bottom: none;
}

.red-value {
    background-color: #FFE1D6;
    border: 1px solid #FA9269;
    padding: 4px 8px;
    border-radius: 4px;
}

.yellow-value {
    background-color: #FFF2D9;
    border: 1px solid #FFC043;
    padding: 4px 8px;
    border-radius: 4px;
}

.green-value {
    background-color: #CEEBDF;
    border: 1px solid #06C167;
    padding: 4px 8px;
    border-radius: 4px;
}

.blue-value {
    background-color: #D4E2FC;
    border: 1px solid #5B91F5;
    padding: 4px 8px;
    border-radius: 4px;
}

.gray-value {
    background-color: #d2d2d2;
    border: 1px solid #808080;
    padding: 4px 8px;
    border-radius: 4px;
}

.avg-value {
    background-color: #F6F6F6;
    border: 1px solid #6B6B6B;
    padding: 4px 8px;
    border-radius: 4px;
}

.avg-table {
    border-radius: 4px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.avg-table th {
    border-bottom: none;
}

.avg-table td {
    border-top: none;
}

.avg-table th,
.avg-table td {
    border-right: none;
}

.avg-table th:last-child,
.avg-table td:last-child {
    border-right: 1px solid #5B91F5;
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-wrapper {
    min-width: 800px;
}

.avg-table-left-top {
    border-radius: 4px 0 0 0;
}

.avg-table-right-top {
    border-radius: 0 4px 0 0;
}

.avg-table-left-bottom {
    border-radius: 0 0 0 4px;
}

.avg-table-right-bottom {
    border-radius: 0 0 4px 0;
}

.level-red {
    background-color: #FFE1D6 !important;
    border: 1px solid #9A3F21;
    color: #9A3F21 !important;
}

.level-yellow {
    background-color: #FFF2D9 !important;
    border: 1px solid #674D1B;
    color: #674D1B !important;
}

.level-green {
    background-color: #CEEBDF !important;
    border: 1px solid #03582F;
    color: #03582F !important;
}

.level-blue {
    background-color: #D4E2FC !important;
    border: 1px solid #174291;
    color: #174291 !important;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

.table-wrapper {
    min-width: 800px;
}

.avg-table tbody .level-red {
    background-color: transparent !important;
}

.avg-table tbody .level-yellow {
    background-color: transparent !important;
}

.avg-table tbody .level-green {
    background-color: transparent !important;
}

.avg-table tbody .level-blue {
    background-color: transparent !important;
}


/*-----------------------------*/

/* status.html */
.h-32 {
    height: 32px;
}

/* 자녀정보 - 시간표 */
.date-circle {
    position: relative;
    z-index: 1;
}

.date-circle.active {
    color: white;
}

.date-circle.selected {
    color: #276ef1;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: -1;
}

.circle-bg.active {
    background-color: #276ef1;
}

.circle-bg.selected {
    background-color: #E5EDFF;
}


.bg-gray {
    background-color: #F6F6F6;
}

.bg-gray-686868{
    background-color: #686868;
}

.bg-white {
    background-color: #FFFFFF;
}

.bridge {
    width: fit-content;
}

.bridge.blue {
    color: #174291;
    border: 0.5px solid #174291;
}

.bridge-bg.blue {
    background-color: #D4E2FC;
}

.bridge.green {
    color: #03582F;
    border: 0.5px solid #06C167;
}

.bridge-bg.green {
    background-color: #CEEBDF;
}

.bridge.yellow {
    color: #674D1B;
    border: 0.5px solid #FFC043;
}

.bridge-bg.yellow {
    background-color: #FFF2D9;
}

.bridge.pink {
    color: #72335D;
    border: 0.5px solid #CE7EB3;
}

.bridge-bg.pink {
    background-color: #F2DDEB;
}

.bridge.purple {
    color: #6929C4;
    border: 0.5px solid #957FCE;
}

.bridge-bg.purple {
    background-color: #E5EDFF;
}

.bridge.gray {
    color: #121619;
    border: 0.5px solid #AFAFAF;
}

.bridge-bg.gray {
    background-color: #E2E2E2;
}

.schedule-item {
    position: relative;
    padding-left: 12px;
}

.schedule-item.underline {
    border-bottom: 1px solid #EEEEEE;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 68px;
    border-radius: 20px;
}

.schedule-item.blue::before {
    background-color: #174291;
}

.schedule-item.green::before {
    background-color: #03582F;
}

.schedule-item.yellow::before {
    background-color: #674D1B;
}

.schedule-item.pink::before {
    background-color: #72335D;
}

.schedule-item.purple::before {
    background-color: #453473;
}

.schedule-item.empty {
    height: 83px;
}

.empty {
    color: #E5E5E5;
}

.reinforcement-item {
    position: relative;
    padding-left: 12px;
    height: 68px;
}

.reinforcement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 68px;
    background-color: #000000;
    border-radius: 20px;
}

/*-----------------------------*/

/* notice.html */
.date-box {
    background-color: #F6F6F6;
}
.date-label {
    background-color: #E2E2E2;
}
.board-list {
    background-color: #F6F6F6;
}

.important-notice {
    white-space: nowrap;
    background-color: #FFE6E6;
}

.fs-18 {
    font-size: 18px;
}

.notice-image {
    height: 200px;
}

.noti-content img{
    max-width: 100% !important;
    height: auto !important;
}

.board-content img{
    max-width: 100% !important;
    height: auto !important;
}

/*-----------------------------*/

/* service-term.html */
.table-style {
    border-collapse: collapse;
    width: 100%;
}

.cell-style {
    background-color: #f2f2f2;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-top: 1px solid black;
    height: 44px;
    width: 559px;
}

/*-----------------------------*/

/* attendance.html */
.calendar-container {
    color: #999999;
    font-weight: bold;
}

/*-----------------------------*/

/* schedule/academic-schedule/detail.html */

.schedule-blue {
    background-color: #E6F3FF;
}

.schedule-red {
    background-color: #FFE6E6;
}

.schedule-gray {
    background-color: #e6e6e6;
}

.schedule-lightgray {
    background-color: #f0f0f0;
}

.schedule-charcoal {
    background-color: #e1e0e0;
}

/*-----------------------------*/

/* calendar.html */
.circle-size {
    font-size: 6px;
}

/*-----------------------------*/

/* email-auth.html */

.email-auth-title {
    line-height: 2rem;
}

.email-card {
    height: 120px;
}

.auth-section-title {
    font-size: 18px;
    font-weight: bolder;
}


/*-----------------------------*/

/* email-auth.html */

.circle-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
}


.survey-slider-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    outline: none;
    background: #e0e7ff;
    transition: background 0.1s;
}

.survey-slider-range::-webkit-slider-runnable-track {
    background: transparent !important;
    border-radius: 4px;
    height: 8px;
}

.survey-slider-range::-moz-range-track {
    background: transparent !important;
    border-radius: 4px;
    height: 8px;
}

.survey-slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 3px solid #2563eb;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -8px;
    transition: 0.2s;
    position: relative;
}

.survey-slider-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 3px solid #2563eb;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.slider-steps {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0;
    pointer-events: none;
}

.slider-steps span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #e0e7ff;
    border-radius: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}

/* 별점 컨테이너: 바깥 별 5개 (회색) + 안쪽 별 5개 (파란색) */
.star-wrapper {
    display: inline-block;
    position: relative;
    font-size: 2rem; /* 별 크기 조절 */
    margin-top: 8px;
    color: #ccc;     /* 바깥 별은 회색 */
    user-select: none; /* 드래그 시 텍스트가 선택되는 현상 방지 */
}

/* 안쪽 별(파란색) */
.stars-inner {
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
}

.star-wrapper i {
    display: inline-block;
}

.top-progress-container {
    position: relative;
    left: 0;
    width: 100%;
    height: 4px;          /* 진행바 높이 */
    background-color: #e0e7ff; /* 연한 배경색 */
    z-index: 9999;        /* 다른 요소들보다 위에 배치 */
}


.top-progress-bar {
    height: 100%;
    width: 50%;
    background-color: #2563eb; /* 파란색 */
    transition: width 0.4s ease;
}


/*-----------------------------*/

#characterModal .card.active img {
    transition: .2s ease;
}

#characterModal .card.active img {
    border: 2px solid #2563eb;
    box-shadow: 0 0 5px #2563eb;
}

/*-----------------------------*/
/* owl.main.html */
.custom-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-bottom: 1px solid #dee2e6;
    scrollbar-width: thin;
}
.custom-tabs .nav-item {
    flex: 0 0 auto;
}
.custom-tabs .nav-btn {
    color: #cccccc;
    padding: 0 20px;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    font-weight: 400;
    font-size: 16px;
    border-radius: 0;
    transition: color 0.2s, border-bottom 0.2s;
    min-width: 100px; /* 탭 너비 조정 */
}
.custom-tabs .nav-btn.active {
    color: #222;
    font-weight: 600;
    border-bottom: 2px solid #2962f6;
    background: none;
}
.custom-tabs .nav-btn:focus {
    outline: none;
    box-shadow: none;
}
/* 스크롤바 스타일(선택) */
.custom-tabs::-webkit-scrollbar {
    display: none; /* 크롬, 사파리, 엣지용 */
}
.custom-tabs::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 2px;
}
.custom-tabs {
    /* ... 기존 스타일 ... */
    scrollbar-width: none; /* 파이어폭스용 */
}

.chat-label {
    width: 8px; height: 8px;
}

.chat-label.my-color {
    background-color: #0051ff;
}

.chat-label.avg-color {
    background-color: #e0e0e0;
}


/*-----------------------------*/
/* owl.detail-page.html */
.bg-color-gray {
    background-color: #F6F6F6;
}

.custom-gray-btn {
    background:#f7f8fa;
    color:#222;
    border:1.5px solid #bfc7ce;
}

.th-gray {
    background-color: #F6F6F6 !important;
    color: #000000 !important;
}

.tr-first-gray td:first-child {
    background-color: #F5F6F8 !important;
}

.custom-pill-tabs {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;       /* 줄바꿈 방지 */
    overflow-x: auto;        /* 가로 스크롤 */
    white-space: nowrap;     /* 텍스트 줄바꿈 방지 */
}

.pill-tab {
    flex: 0 0 auto;          /* li 항목이 줄바꿈 없이 크기 유지 */
    padding: 6px 18px;
    border-radius: 20px;
    background: #f3f3f3;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    user-select: none;
}

.pill-tab.active {
    background: #111;
    color: #fff;
}

.overflow-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.overflow-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.score-badge {
    display: inline-block;
    min-width: 48px;
    padding: 2px 4px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.score-badge.blue {
    background: #D4E2FC;
    color: #174291;
    border: 1px solid #5B91F5;
}

.score-badge.green {
    background: #CEEBDF;
    color: #03572f;
    border: 1px solid #06C167;
}

.score-badge.orange {
    background: #FFF2D9;
    color: #674D1B;
    border: 1px solid #FFC043;
}

.bg-blue {
    background-color: #689AF5 !important;
    color: #000000 !important;
}

.bg-blue-subtle {
    background-color: #D9E9FF !important;
    color: #000000 !important;
}

.answer-number {
    font-size: 20px;
}

.section-padding-gray{
    background-color: #F6F6F6;
    height: 10px;
    margin: 20px 0;
    width: 100vw;                /* 전체 화면 너비 */
    position: relative;          /* 필수 아님, 문맥에 따라 필요 */
    left: 50%;                   /* 가운데로 이동 */
    right: 50%;
    transform: translateX(-50%); /* X축 기준으로 정확히 가운데 정렬 */
}

/*-----------------------------*/

/* inquiry.html */
.btn-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 14px;
    line-height: normal; /* 기존 line-height 제거 */
    padding-bottom: 8px;
    padding-left: 10px;
}

.inquiry-container {
    background-color: #f4f4f4;
    min-height: calc(100vh - 202px); /* 상단 영역(문의 개수 + nav 높이) 제외 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.inquiry-nothing {
    text-align: center;
}

.inquiry-nothing img {
    display: block;
    margin: 0 auto;
}

.inquiry-nothing span {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    color: #aaaaab;
}

.btn-primary-light {
    background-color: #edf2fd;
    color: #2c83fa;
    font-weight: 500;
}

.inquiry-content-border {
    position: relative;
    padding-top: 20px; /* 내용과 선 간격 조정 */
}

.inquiry-content-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100vw; /* 화면 왼쪽 끝까지 확장 */
    width: 200vw; /* 화면 너비의 두 배 */
    height: 2px;
    background-color: #000000; /* 선 색상 */
}

/*-----------------------------*/

/* inquiry.html */
.btn-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 14px;
    line-height: normal; /* 기존 line-height 제거 */
    padding-bottom: 8px;
    padding-left: 10px;
}

.inquiry-container {
    background-color: #f4f4f4;
    min-height: calc(100vh - 202px); /* 상단 영역(문의 개수 + nav 높이) 제외 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.inquiry-nothing {
    text-align: center;
}

.inquiry-nothing img {
    display: block;
    margin: 0 auto;
}

.inquiry-nothing span {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    color: #aaaaab;
}

.btn-primary-light {
    background-color: #edf2fd;
    color: #2c83fa;
    font-weight: 500;
}

.inquiry-content-border {
    position: relative;
    padding-top: 20px; /* 내용과 선 간격 조정 */
}

.inquiry-content-border::before {
    content: "";
    position: absolute; /* 부모 요소의 제약을 받지 않도록 설정 */
    top: 0;
    left: 0;
    width: 100vw; /* 화면 전체 너비 */
    height: 2px;
    background-color: #000000; /* 선 색상 */
    transform: translateX(-1rem); /* 부모 요소의 중앙에서 벗어나도록 조정 */
    z-index: 1; /* 다른 요소 위에 표시 */
}

/* image-preview-modal */
.image-preview-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(185, 185, 185); /* 불투명한 배경 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
    z-index: 9999; /* 가장 앞으로 */
}

.image-preview-modal.active {
    bottom: 0;
}

.image-preview-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff; /* 흰색 배경 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10000; /* 가장 앞으로 */
}

.image-name {
    font-weight: bold;
    color: #333; /* 텍스트 색상 */
}

.close-button {
    background: none;
    border: none;
    color: #333; /* 닫기 버튼 색상 */
    font-size: 20px;
    cursor: pointer;
}

.image-preview-content, .video-preview-content {
    width: 100%; /* 좌우로 꽉 차게 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-preview-content img, .video-preview-content video {
    width: 100%; /* 좌우로 꽉 차게 */
    height: auto;
    max-height: 80%; /* 화면 높이를 초과하지 않도록 */
    border: none;
    z-index: 9999; /* 가장 앞으로 */
}