    /* ========== Layout (Flex 2-Column) ========== */
    body {
        background: rgba(245, 246, 248, 0.7);
    }

    .wrap {
        max-width: 960px;
        margin: 0 auto;
        padding: 40px;
        color: #222;
        background: #fff;
    }

    .page-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .resv-form {
        display: block;
        border-top: 2px solid #111;
    }

    .form-row {
        display: flex;
        gap: 24px;
        align-items: flex-start;
        padding: 14px 0;
        border-top: 1px solid #eef1f4;
    }

    .form-row:first-child {
        border-top: 0
    }

    .form-col.label {
        width: 180px;
        flex: 0 0 180px;
        padding-top: 12px;
        font-weight: 600;
    }

    .form-col.field {
        flex: 1 1 auto
    }

    .help-msg {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.5;
        color: #c22;
    }

    .muted {
        color: #7a8699
    }

    .inline {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap
    }

    .w-160 {
        width: 160px !important;
    }

    .w-120 {
        width: 120px !important;
    }

    .w-260 {
        width: 260px !important;
    }

    .w-300 {
        width: 300px !important;
    }

    .w-100p {
        width: 100% !important;
    }

    /* ========== Inputs ========== */
    .ipt {
        width: 100%;
        height: 50px;
        padding: 0 12px;
        border: 1px solid #c5ccd4;
        border-radius: 8px;
        font-size: 14px;
        background: #fff;
        color: #333;
    }

    .ipt::placeholder {
        color: #9aa4b2
    }

    textarea.ipt {
        height: 120px;
        padding: 12px;
        resize: vertical
    }

    /* ========== Custom Select (공통) ========== */
    .custom-select {
        position: relative;
        width: 120px;
    }

    .custom-select .select-trigger {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 50px;
        padding: 0 12px;
        border: 1px solid #c5ccd4;
        border-radius: 8px;
        background: #fff;
        font-size: 14px;
        color: #333;
        cursor: pointer;
    }

    .custom-select .select-trigger .arrow {
        transition: transform .25s ease;
    }

    .custom-select.active .select-trigger .arrow {
        transform: rotate(180deg);
    }

    .custom-select .select-options {
        display: none;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        border: 1px solid #c5ccd4;
        border-radius: 8px;
        background: #fff;
        z-index: 20;
        box-shadow: 0 8px 24px rgba(2, 18, 46, .08);
    }

    .custom-select.active .select-options {
        display: block;
    }

    .custom-select .select-options li {
        padding: 10px 12px;
        cursor: pointer;
        font-size: 14px;
    }

    .custom-select .select-options li:hover {
        background: #f1f3f5;
    }

    .custom-select .select-options li[aria-selected="true"] {
        background: #eef6ff
    }

    /* ========== Buttons ========== */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        width: 220px;
        text-align: center;
        border-radius: 10px;
        border: 1px solid transparent;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px;
    }

    .btn-primary {
        background: #111827;
        color: #fff;
    }

    .btn-outline {
        background: #fff;
        color: #111827;
        border-color: #c5ccd4;
    }

    .btn:disabled {
        opacity: .6;
        cursor: not-allowed
    }

    /* ========== Calendar Modal ========== */
    .calendar-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 1000;
        display: none;
        justify-content: center;
        align-items: center;
    }

    .calendar-modal.show {
        display: flex;
    }

    .calendar-modal__box {
        background: #fff;
        width: 380px;
        max-width: 90%;
        border-radius: 12px;
        overflow: hidden;
    }

    .calendar-modal__header {
        padding: 20px;
        font-size: 18px;
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .calendar-modal__header h3 {
        font-weight: 400;
    }

    .calendar-modal__close {
        background: none;
        border: 0;
        font-size: 22px;
        cursor: pointer;
    }

    .calendar-modal__body {
        padding: 12px 20px;
    }

    .calendar-modal__footer {
        padding: 16px;
        background: #f1f1f1;
        text-align: center;
    }

    .calendar-modal__confirm {
        background: #111827;
        border: 0;
        padding: 12px 40px;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
    }

    .cus-cal {
        background: #fff;
        border-radius: 4px;
        max-width: 100%;
        border: 1px solid rgba(238, 238, 238, .8);
    }

    .cus-cal-header {
        display: flex;
        align-items: center;
        padding: 12px;
    }

    .cus-cal-header-label {
        flex: 1;
        text-align: center;
        font-weight: 700;
    }

    .cus-cal-week {
        display: flex;
    }

    .cus-cal-week span {
        width: 14.28%;
        padding: 8px;
        font-size: 13px;
        text-align: center;
        font-weight: 600;
    }

    .cus-cal-week span:first-child {
        color: red;
    }

    .cus-cal-body {
        display: flex;
        flex-wrap: wrap;
        background: #fff;
        height: 240px;
    }

    .cus-cal-date {
        width: 14.28%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cus-cal-date span {
        font-size: 15px;
        font-weight: 400;
    }

    .cus-cal-date--active {
        cursor: pointer;
        border-radius: 50%;
    }

    .cus-cal-date--today {
        background: #e7e9ed;
        color: #7f7f7f;
    }

    .cus-cal-date--selected {
        background: #111;
        color: #fff;
    }

    .cus-cal-date--disabled {
        opacity: .4;
        cursor: not-allowed;
    }

    /* ========== Fare Modal ========== */
    .fare-modal {
        display: none;
        position: fixed;
        inset: 0;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }

    .fare-modal.show {
        display: flex;
    }

    .fare-modal__dim {
        position: fixed;
        /* ✅ 화면 전체 고정 */
        inset: 0;
        /* top:0; right:0; bottom:0; left:0 */
        background: rgba(17, 24, 39, 0.5);
        /* 반투명 딤 */
        z-index: 1000;
        /* 패널 뒤, 다른 요소 위 */
    }


    .fare-modal__panel {
        position: relative;
        background: #fff;
        width: 520px;
        max-width: 90%;
        border-radius: 14px;
        box-shadow: 0 16px 48px rgba(2, 18, 46, .18);
        padding: 20px;
        z-index: 1001;
    }

    .fare-modal__head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    .fare-modal__title {
        font-weight: 700;
        font-size: 18px;
    }

    .fare-modal__close {
        background: none;
        border: 0;
        font-size: 22px;
        cursor: pointer;
    }

    .fare-modal__body {
        font-size: 14px;
        line-height: 1.6;
    }

    .fare-modal__footer {
        margin-top: 16px;
        text-align: right;
    }

    .fare-summary {
        margin-bottom: 10px;
        color: #334155;
    }

    .fare-list {
        list-style: none;
        padding: 0;
        margin: 0 0 12px;
    }

    .fare-list__item {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        font-size: 14px;
        border-bottom: 1px solid #f1f5f9;
    }

    .fare-list__item:last-child {
        border-bottom: none;
    }

    .fare-list__item .label {
        color: #374151;
    }

    .fare-list__item .amount {
        font-weight: 600;
        color: #111;
    }


    .fare-notes {
        margin: 10px 0 0 18px;
        color: #444;
        font-size: 13px;
    }

    .fare-total {
        margin-top: 14px;
        text-align: right;
        font-weight: 800;
        font-size: 18px;
        color: #e11d48;
    }

@media (max-width:768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-col.label {
        flex: 1;
    }
}