/* ==================== 기본 스타일 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* ==================== 헤더 스타일 ==================== */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

header nav {
    display: flex;
    justify-content: flex-end;
}

.main-button-container {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.5rem 1rem;
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #1a252f;
}

#logoutLink {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: #34495e;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#logoutLink:hover {
    background-color: #1a252f;
}

#logoutLink {
    display: none;
}

#logoutLink.visible {
    display: inline-block;
}

#reservationSubMenu,
#useageSubMenu {
    display: none;
}

#reservationSubMenu.active,
#useageSubMenu.active {
    display: block;
}

/* ==================== 표시/숨김 제어 ==================== */
.visible {
    display: block !important;
}

.hidden {
    display: none !important;
}

/* ==================== 사이드바 스타일 ==================== */
aside#right-help {
    position: fixed;
    right: 20px;
    top: 120px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 300px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

aside#right-help h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* ==================== 유틸리티 클래스 ==================== */
.mt-10px {
    margin-top: 10px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-8px {
    gap: 8px;
}

.gap-6px {
    gap: 6px;
}

.gap-x-3px {
    column-gap: 3px;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.shrink-0 {
    flex-shrink: 0;
}

.text-right {
    text-align: right;
}

.text-13px {
    font-size: 13px;
}

.text-gray-600 {
    color: #6b7280;
}

.text-gray-700 {
    color: #374151;
}

.font-pretendard {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.font-medium {
    font-weight: 500;
}

/* ==================== 메인 콘텐츠 ==================== */
main {
    padding: 2rem;
    margin-right: 0;
}

/* ==================== 로그인 폼 스타일 ==================== */
#loginForm {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 2rem auto;
}

#loginForm h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

#loginForm label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

#loginForm input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#loginForm input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.login-button-container {
    margin-top: 1.5rem;
}

.login-button-container button {
    width: 100%;
    padding: 0.75rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button-container button:hover {
    background-color: #2980b9;
}

#response {
    margin-top: 1rem;
    text-align: center;
    color: #e74c3c;
}

/* ==================== 웰컴 메시지 ==================== */
.wellcome {
    text-align: center;
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 2rem 0;
}

/* ==================== 예약 컨테이너 ==================== */
.reservation-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.reservation-container h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.reservation-container h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.reservation-modify-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.reservation-modify-container h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* ==================== 폼 스타일 ==================== */
form {
    display: flex;
    flex-direction: column;
}

fieldset {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

legend {
    padding: 0 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

input[type="text"],
input[type="date"],
input[type="time"],
input[type="password"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

/* ==================== 필수 항목 표시 ==================== */
.required-star {
    color: #e74c3c;
    font-weight: bold;
}

/* ==================== 버튼 스타일 ==================== */
button {
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

button[type="button"] {
    background-color: #95a5a6;
}

button[type="button"]:hover {
    background-color: #7f8c8d;
}

/* ==================== 예약 버튼 컨테이너 ==================== */
.reservation-button-container {
    display: flex;
    gap: 1rem;
    margin-top: 0;
    min-width: auto;
    flex-shrink: 0;
}

.filter-layout-container > .reservation-button-container {
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.reservation-button-container button {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==================== 주소 검색 스타일 ==================== */
.suggestions {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    display: none;
}

.suggestions.active {
    display: block;
}

.suggestions div {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.suggestions div:hover {
    background-color: #f0f0f0;
}

.suggestions div:last-child {
    border-bottom: none;
}

/* ==================== 탑승인원 선택 ==================== */
.passengersnum-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0.5rem 0;
}

.passengersnum-container button {
    padding: 0.5rem 1rem;
    min-width: 40px;
}

.passengersnum-container input {
    width: 60px;
    text-align: center;
    margin: 0;
}

.passengersnum {
    padding: 0.75rem 1rem;
    margin: 0.25rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
}

.passengersnum:hover,
.passengersnum.selected {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* ==================== 시간대절 버튼 ==================== */
.timerent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.timerent {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
    text-align: center;
    line-height: 1.4;
}

.timerent:hover,
.timerent.selected {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.gray-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==================== 대절 시간 정보 ==================== */
.expectation {
    padding: 1rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin: 1rem 0;
}

.expectation-timeright {
    float: right;
    font-weight: 600;
    color: #3498db;
}

/* ==================== 공항 선택 버튼 ==================== */
.ArrivalDepartureSelect {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.ArrivalDepartureSelect button {
    flex: 1;
    padding: 1rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
}

.ArrivalDepartureSelect button:hover,
.ArrivalDepartureSelect button.selected {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.ArrivalDepartureSelect button span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==================== 주소 입력 컨테이너 ==================== */
.startAddressInput,
.endAddressInput {
    margin-bottom: 1rem;
}

.startAddressSelect,
.endAddressSelect {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.Sairportselect,
.Eairportselect {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.Sairportselect:hover,
.Eairportselect:hover,
.Sairportselect.selected,
.Eairportselect.selected {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* ==================== 필터 및 테이블 스타일 ==================== */
.filter-layout-container {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

#filterFieldset {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#filterFieldset legend {
    padding: 0 0.5rem;
}

.filterFieldset-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.filterFieldsetLeft-container,
.filterFieldsetRight-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.filterFieldsetRight-container {
    height: 100%;
}

.servicefiltercontainer,
.DateFilterContainer,
.StatusFilterContainer {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ServiceContaioner,
.DateContainer,
.StatusContainer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.ServiceContaioner label,
.DateContainer label,
.StatusContainer label {
    margin: 0;
    font-weight: 600;
    min-width: 100px;
}

#DateReset,
#DateToday,
#DateTomorrow {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: #95a5a6;
}

#DateReset:hover,
#DateToday:hover,
#DateTomorrow:hover {
    background-color: #7f8c8d;
}

.DateCalendar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.DateCalendar input {
    flex: 1;
    min-width: 50px;
}

.reservationTypeFieldsetContaioner fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.reservationTypeFieldsetContaioner label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    font-weight: normal;
}

.StatusSelectContainer {
    margin-bottom: 0.5rem;
}

.StatusSelectContainer select {
    max-width: 50%;
}

#airportFilterContainer,
#onelineFilterContainer {
    display: none;
}

#airportFilterContainer.visible,
#onelineFilterContainer.visible {
    display: block;
}

#airportFilterContainer label,
#onelineFilterContainer label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.9rem;
}

#airportFilterContainer select,
#onelineFilterContainer select {
    max-width: 50%;
}

select[disabled],
.disabled-select {
    background-color: #f0f0f0 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

select:not([disabled]),
select:not(.disabled-select) {
    background-color: white !important;
    color: #333 !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

#filterValue {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.SearchFilterContainer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 300px;
    margin-top: auto;
}

.SearchFilterContainer input {
    flex: 1;
    min-width: 150px;
    margin-top: auto;
}

.filterapply {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

#applybutton {
    padding: 0.75rem 2rem;
    background-color: #27ae60;
    font-size: 1rem;
}

#applybutton:hover {
    background-color: #229954;
}

/* ==================== 테이블 스타일 ==================== */
.table-container {
    background-color: white !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 2rem !important;
    overflow: auto !important;
    display: block !important;
}

table {
    width: 100% !important;
    border-collapse: collapse !important;
    background-color: white !important;
    display: table !important;
}

thead {
    background-color: #2c3e50 !important;
    color: white !important;
    display: table-header-group !important;
}

th {
    padding: 8px 12px !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    border-bottom: 2px solid #34495e !important;
    border-right: 1px solid #34495e !important;
    color: white !important;
    background-color: #2c3e50 !important;
    display: table-cell !important;
    height: 40px !important;
    line-height: 1.2 !important;
    vertical-align: middle !important;
}

th:last-child {
    border-right: none !important;
}

tbody {
    display: table-row-group !important;
}

tr {
    display: table-row !important;
}

tbody tr {
    border-bottom: 1px solid #eee !important;
    display: table-row !important;
}

tbody tr:hover {
    background-color: #f5f5f5 !important;
}

td {
    padding: 8px 12px !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    border-bottom: 1px solid #eee !important;
    border-right: 1px solid #eee !important;
    display: table-cell !important;
    height: 40px !important;
    line-height: 1.2 !important;
    vertical-align: middle !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

td:last-child {
    border-right: none !important;
}

/* 출발지(열 6), 도착지(열 7) 칼럼 너비 */
th:nth-child(6), td:nth-child(6) {
    min-width: 150px !important;
}

th:nth-child(7), td:nth-child(7) {
    min-width: 150px !important;
}

tbody tr:hover td {
    background-color: #f5f5f5 !important;
}

th.sticky-status {
    background-color: #2c3e50 !important;
    color: white !important;
    display: table-cell !important;
}

td.sticky-status {
    background-color: white !important;
    display: table-cell !important;
}

tbody tr:hover td.sticky-status {
    background-color: #f5f5f5 !important;
}

.status-select {
    padding: 6px 8px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    background-color: white !important;
    cursor: pointer !important;
}

/* ==================== 페이지네이션 ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination button {
    padding: 0.5rem 0.75rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.pagination button:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination button.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* ==================== 페이지네이션 버튼 ==================== */
.pagination-button {
    padding: 0.5rem 0.75rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.pagination-button:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination-button.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* ==================== 임시 메시지 ==================== */
#temporaryMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    text-align: center;
    max-width: 300px;
    animation: fadeInOut 3s ease-in-out forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* ==================== 엑셀 다운로드 ==================== */
.ExcelDownContainer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.ExcelDown {
    padding: 0.75rem 1.5rem;
    background-color: #27ae60;
}

.ExcelDown:hover {
    background-color: #229954;
}

/* ==================== 모달 스타일 ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
}

.modal.hidden {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.modal.visible {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5vh;
}

.modal.active {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5vh;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    flex-shrink: 0;
}

.close-button {
    color: #999;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.modal-content input[type="radio"] {
    margin-right: 0.5rem;
}

.modal-button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.modal-button-container button {
    flex: 1;
    max-width: 150px;
}

/* ==================== 라디오 버튼 및 체크박스 ==================== */
input[type="radio"],
input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

/* ==================== 트랜슬레이션 메뉴 ==================== */
.TranslateMenu {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #bdc3c7;
}

.TranslateMenu a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: opacity 0.3s ease;
}

.TranslateMenu a:hover {
    opacity: 0.8;
}

/* ==================== 반응형 디자인 ==================== */
@media (max-width: 1200px) {
    main {
        margin-right: 0;
    }

    aside#right-help {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    header h1 {
        font-size: 1.2rem;
    }

    .main-button-container {
        flex-direction: column;
    }

    .nav-btn {
        width: 100%;
    }

    main {
        padding: 1rem;
    }

    .reservation-container,
    .reservation-modify-container,
    .filter-layout-container {
        padding: 1rem;
        flex-direction: column;
    }

    .filterFieldset-container {
        flex-direction: column;
        gap: 1rem;
    }

    .timerent-buttons {
        flex-direction: column;
    }

    .ArrivalDepartureSelect {
        flex-direction: column;
    }

    .startAddressSelect,
    .endAddressSelect {
        flex-direction: column;
    }

    .Sairportselect,
    .Eairportselect {
        min-width: 100%;
    }

    table {
        font-size: 0.9rem;
    }

    th,
    td {
        padding: 0.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 1rem;
    }

    .modal-button-container {
        flex-direction: column;
    }

    .modal-button-container button {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }

    header h1 {
        font-size: 1rem;
    }

    .reservation-container h3 {
        font-size: 1.1rem;
    }

    input[type="text"],
    input[type="date"],
    input[type="time"],
    select {
        font-size: 16px;
    }

    #loginForm {
        margin: 1rem;
        padding: 1.5rem;
    }

    .passengersnum-container {
        width: 100%;
    }

    .passengersnum-container input {
        width: 50px;
    }
}


.schFln { position: relative; }
.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}
.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.suggestion-item:hover { background-color: #f0f0f0; }

.detail-container {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.notepad{
    width : 30%;
    height : 200px;
    margin : 0 auto;
}
.ReservationDetailButtonContainer {
    display: flex;
    justify-content: right;
    gap: 1rem;
    margin-top: 1rem;
}