/* ========================================
   Celib Tour Unified Styles
   tour_reservation.css + tour management v2
======================================== */

/* --- Page Layout --- */
.lv2-page .tr-page {
    padding-top: 68px;
    min-height: 100vh;
    background-color: #F9FAFB;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lv2-page .tr-page .lv2-header {
    background: #FFFFFF !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lv2-page .tr-page .lv2-footer {
    margin-top: 0;
}

/* --- Loading Spinner --- */
.lv2-page #tour-loadingBar {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.lv2-page #tour-loadingBar .loading {
    width: 44px; height: 44px;
    border: 3px solid rgba(10,10,10,0.15);
    border-right-color: #0A0A0A;
    border-radius: 50%;
    animation: tr-spin 0.8s linear infinite;
}

@keyframes tr-spin {
    to { transform: rotate(360deg); }
}

/* --- Step Show/Hide --- */
.lv2-page .tr-step { display: none; }
.lv2-page .tr-step.active { display: block; }

/* --- Container --- */
.lv2-page .tr-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 16px 100px;
}

.lv2-page .tr-container--narrow {
    max-width: 500px;
}

/* --- Headings --- */
.lv2-page .tr-heading { margin-bottom: 20px; }

.lv2-page .tr-heading__title {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
    margin: 0 0 4px;
}

.lv2-page .tr-heading__desc {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.lv2-page .tr-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
    margin: 0;
}

.lv2-page .tr-section-desc {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.5;
    margin: 2px 0 0;
}

/* --- Buttons --- */
.lv2-page .tr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 8px;
    padding: 14px 28px;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.lv2-page .tr-btn:hover { opacity: 0.85; }

.lv2-page .tr-btn--primary {
    background: #0A0A0A;
    color: #FFFFFF;
    border: 1px solid #0A0A0A;
}

.lv2-page .tr-btn--primary:disabled {
    background: #D1D5DB;
    border-color: #D1D5DB;
    color: #9CA3AF;
    cursor: not-allowed;
    opacity: 1;
}

.lv2-page .tr-btn--outline {
    background: #FFFFFF;
    color: #0A0A0A;
    border: 1px solid #0A0A0A;
}

.lv2-page .tr-btn--outline-sm {
    background: #FFFFFF;
    color: #0A0A0A;
    border: 1px solid #DFE4EA;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
}

/* ========================================
   STEP 1 - Property List
======================================== */
.lv2-page .tr-property-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lv2-page .tr-property-card {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #DFE4EA;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.lv2-page .tr-property-card:hover {
    border-color: #0A0A0A;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.lv2-page .tr-property-card__img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.lv2-page .tr-property-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv2-page .tr-property-card__img::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
}

.lv2-page .tr-property-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding: 0 16px 0 8px;
    min-width: 0;
}

.lv2-page .tr-property-card__title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lv2-page .tr-property-card__name {
    flex: 1;
    min-width: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
}

.lv2-page .tr-property-card__badge {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding: 4px 6px;
    background: #E5E7EB;
    color: #374151;
    font-size: 11px;
    font-weight: 400;
    border-radius: 100px;
    line-height: 1.5;
    white-space: nowrap;
}

.lv2-page .tr-property-card__arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #382611;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lv2-page .tr-property-card__arrow svg {
    width: 11px;
    height: 11px;
}

.lv2-page .tr-property-card__address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #0A0A0A;
    opacity: 0.82;
    line-height: 1.5;
}

.lv2-page .tr-property-card__address svg {
    flex-shrink: 0;
}

.lv2-page .tr-property-card-wrapper {
    position: relative;
}

.lv2-page .tr-property-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1F2937;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
    margin-top: 8px;
}

.lv2-page .tr-property-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top: none;
    border-bottom-color: #1F2937;
}

.lv2-page .tr-property-tooltip.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   STEP 2 - Schedule
======================================== */
.lv2-page .tr-step2-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.lv2-page .tr-step2-header__info { flex: 1; min-width: 0; }

.lv2-page .tr-step2-header__title {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
    margin: 0;
}

.lv2-page .tr-step2-header__address {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 4px 0 0;
}

.lv2-page .tr-schedule-container {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    overflow: hidden;
}

.lv2-page .tr-calendar-section {
    padding: 24px 16px;
}

.lv2-page .tr-calendar-section__header {
    margin-bottom: 24px;
}

.lv2-page .tr-calendar__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.lv2-page .tr-calendar__nav-btn {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #0A0A0A;
    padding: 0;
}

.lv2-page .tr-calendar__month {
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
}

.lv2-page .tr-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 8px;
}

.lv2-page .tr-calendar__weekdays > div {
    padding: 4px 0;
}

.lv2-page .tr-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.lv2-page .tr-calendar-day {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #0A0A0A;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}

.lv2-page .tr-calendar-day:hover:not(.disabled):not(.empty):not(.selected) {
    background: #F3F4F6;
}

.lv2-page .tr-calendar-day.disabled {
    color: #D1D5DB;
    cursor: default;
}

.lv2-page .tr-calendar-day.empty {
    cursor: default;
}

.lv2-page .tr-calendar-day.selected {
    background: #0A0A0A;
    color: #FFFFFF;
    font-weight: 700;
}

.lv2-page .tr-calendar-day.today:not(.selected) {
    position: relative;
}

.lv2-page .tr-calendar-day.today:not(.selected)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px; height: 4px;
    background: #0A0A0A;
    border-radius: 50%;
}

.lv2-page .tr-schedule-divider { display: none; }

.lv2-page .tr-time-section {
    padding: 20px 16px;
    border-top: 1px solid #F3F4F6;
}

.lv2-page .tr-time-section .tr-section-title {
    margin-bottom: 16px;
}

.lv2-page .tr-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.lv2-page .tr-time-grid:empty + .tr-time-empty { display: flex; }

.lv2-page .tr-time-btn {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #DFE4EA;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #0A0A0A;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    padding: 0;
}

.lv2-page .tr-time-btn:hover:not(.disabled):not(.selected) {
    border-color: #0A0A0A;
}

.lv2-page .tr-time-btn.selected {
    background: #0A0A0A;
    color: #FFFFFF;
    border-color: #0A0A0A;
    font-weight: 700;
}

.lv2-page .tr-time-btn.disabled {
    color: #D1D5DB;
    border-color: #F3F4F6;
    cursor: not-allowed;
    background: #F9FAFB;
}

.lv2-page .tr-time-empty {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6B7280;
    padding: 24px 0;
}

.lv2-page .tr-time-section__next-btn {
    width: 100%;
    margin-top: 24px;
}

/* ========================================
   STEP 3 - Form
======================================== */
.lv2-page .tr-form-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lv2-page .tr-form-left,
.lv2-page .tr-form-right {
    width: 100%;
}

.lv2-page .tr-schedule-summary {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    margin-bottom: 16px;
}

.lv2-page .tr-schedule-summary__inner {
    padding: 20px 24px;
}

.lv2-page .tr-schedule-summary__label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

.lv2-page .tr-schedule-summary__label svg {
    flex-shrink: 0;
}

.lv2-page .tr-schedule-summary__value {
    font-size: 16px;
    font-weight: 700;
    color: #0A0A0A;
}

.lv2-page .tr-form-section {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    padding: 20px 24px;
}

.lv2-page .tr-form-section .tr-section-title {
    margin-bottom: 16px;
}

.lv2-page .tr-form-group {
    margin-bottom: 16px;
}

.lv2-page .tr-form-group:last-child { margin-bottom: 0; }

.lv2-page .tr-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 6px;
}

.lv2-page .tr-required { color: #EF4444; }

.lv2-page .tr-form-input,
.lv2-page .tr-form-select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    font-family: inherit;
    font-size: 14px;
    color: #0A0A0A;
    background: #FFFFFF;
    border: 1px solid #DFE4EA;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.lv2-page .tr-form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.lv2-page .tr-form-input:focus,
.lv2-page .tr-form-select:focus {
    border-color: #0A0A0A;
}

.lv2-page .tr-form-input.error,
.lv2-page .tr-form-select.error {
    border-color: #EF4444;
}

.lv2-page .tr-form-error {
    display: block;
    font-size: 12px;
    color: #EF4444;
    margin-top: 4px;
    min-height: 0;
}

.lv2-page .tr-form-error:empty { display: none; }

.lv2-page .tr-radio-row {
    display: flex;
    gap: 24px;
}

.lv2-page .tr-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #0A0A0A;
    cursor: pointer;
}

.lv2-page .tr-radio-label input[type="radio"] {
    width: 18px; height: 18px;
    accent-color: #0A0A0A;
    margin: 0;
}

.lv2-page .tr-consent-section {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.lv2-page .tr-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0A0A0A;
    cursor: pointer;
    padding: 4px 0;
}

.lv2-page .tr-checkbox-label--all {
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid #F3F4F6;
}

.lv2-page .tr-checkbox-label input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: #0A0A0A;
    margin: 0;
    flex-shrink: 0;
}

.lv2-page .tr-consent-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lv2-page .tr-consent-items .tr-checkbox-label {
    font-size: 13px;
    color: #374151;
}

.lv2-page .tr-consent-items .tr-checkbox-label a {
    color: #0A0A0A;
    text-decoration: underline;
}

.lv2-page .tr-form-buttons {
    display: flex;
    gap: 8px;
}

.lv2-page .tr-form-buttons .tr-btn--outline {
    min-width: 100px;
}

.lv2-page .tr-form-buttons .tr-btn--primary {
    flex: 1;
}

/* ========================================
   STEP 4 - Complete
======================================== */
.lv2-page .tr-complete {
    text-align: center;
    padding-top: 24px;
}

.lv2-page .tr-complete__icon {
    margin-bottom: 16px;
}

.lv2-page .tr-complete__title {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
    margin: 0 0 8px;
}

.lv2-page .tr-complete__desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0 0 24px;
}

.lv2-page .tr-complete__card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.lv2-page .tr-complete__card-name {
    font-size: 18px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 16px;
}

.lv2-page .tr-complete__card-row {
    margin-bottom: 16px;
}

.lv2-page .tr-complete__card-row:last-child { margin-bottom: 0; }

.lv2-page .tr-complete__card-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 4px;
}

.lv2-page .tr-complete__card-label svg {
    flex-shrink: 0;
}

.lv2-page .tr-complete__card-value {
    font-size: 14px;
    color: #0A0A0A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lv2-page .tr-complete__map-link {
    font-size: 12px;
    color: #6B7280;
    text-decoration: underline;
}

.lv2-page .tr-complete__buttons {
    display: flex;
    gap: 8px;
}

.lv2-page .tr-complete__buttons .tr-btn {
    flex: 1;
}

.lv2-page .tr-complete__buttons .tr-btn:link,
.lv2-page .tr-complete__buttons .tr-btn:visited {
    text-decoration: none;
}

.lv2-page .tr-complete__buttons .tr-btn--outline:visited {
    color: #0A0A0A;
}

.lv2-page .tr-complete__buttons .tr-btn--primary:visited {
    color: #FFFFFF;
}

.lv2-page .tr-complete__buttons .tr-btn--outline:hover,
.lv2-page .tr-complete__buttons .tr-btn--outline:focus,
.lv2-page .tr-complete__buttons .tr-btn--outline:active {
    color: #0A0A0A;
    text-decoration: none;
    opacity: 1;
}

.lv2-page .tr-complete__buttons .tr-btn--primary:hover,
.lv2-page .tr-complete__buttons .tr-btn--primary:focus,
.lv2-page .tr-complete__buttons .tr-btn--primary:active {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 1;
}

/* ========================================
   Tour Management v2 - Auth Page
======================================== */
.lv2-page .tm-page {
    min-height: 100vh;
    background-color: #F9FAFB;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lv2-page .tm-page .lv2-header {
    background: #FFFFFF !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lv2-page .tm-page .lv2-footer {
    margin-top: 0;
}

.lv2-page .tm-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 16px 80px;
}

.lv2-page .tm-container--auth {
    max-width: 390px;
}

.lv2-page .tm-title-section {
    margin-bottom: 24px;
}

.lv2-page .tm-title {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
    margin: 0 0 4px;
}

.lv2-page .tm-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #0A0A0A;
    line-height: 1.5;
    margin: 0;
}

.lv2-page .tm-subtitle strong {
    font-weight: 700;
}

/* Auth Card */
.lv2-page .tm-auth-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.lv2-page .tm-form-group {
    margin-bottom: 16px;
}

.lv2-page .tm-form-group:last-child {
    margin-bottom: 0;
}

.lv2-page .tm-form-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
    margin-bottom: 8px;
}

.lv2-page .tm-form-label .tm-required {
    color: #F23030;
    font-weight: 700;
}

.lv2-page .tm-form-input {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    color: #0A0A0A;
    background: #FFFFFF;
    border: 1px solid #DFE4EA;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.lv2-page .tm-form-input::placeholder {
    color: #9CA3AF;
}

.lv2-page .tm-form-input:focus {
    border-color: #0A0A0A;
}

.lv2-page .tm-form-input.error {
    border-color: #F23030;
}

.lv2-page .tm-form-error {
    display: none;
    font-size: 12px;
    color: #F23030;
    margin-top: 4px;
}

.lv2-page .tm-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 52px;
    background: #0A0A0A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}

.lv2-page .tm-btn-primary:hover {
    opacity: 0.85;
}

/* ========================================
   Tour Management v2 - Card List
======================================== */
.lv2-page .tm-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lv2-page .tm-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.lv2-page .tm-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #DFE4EA;
}

.lv2-page .tm-card__img {
    width: 70px;
    height: 70px;
    border-radius: 7px;
    overflow: hidden;
    flex-shrink: 0;
}

.lv2-page .tm-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv2-page .tm-card__img--dimmed img {
    opacity: 0.4;
}

.lv2-page .tm-card__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lv2-page .tm-card__name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lv2-page .tm-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
}

.lv2-page .tm-card__name--dimmed {
    opacity: 0.4;
}

.lv2-page .tm-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    flex-shrink: 0;
}

.lv2-page .tm-card__badge--reserved {
    background: #4B3010;
    color: #F5F4E6;
}

.lv2-page .tm-card__badge--toured {
    background: #DEE2E6;
    color: #FFFFFF;
}

.lv2-page .tm-card__badge--canceled {
    background: #FEE2E2;
    color: #DC2626;
}

.lv2-page .tm-card__address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #0A0A0A;
    opacity: 0.82;
    line-height: 1.5;
}

.lv2-page .tm-card__address--dimmed {
    opacity: 0.33;
}

.lv2-page .tm-card__address svg {
    flex-shrink: 0;
}

/* Card body - info rows */
.lv2-page .tm-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
}

.lv2-page .tm-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lv2-page .tm-card__row-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

.lv2-page .tm-card__row-label svg {
    flex-shrink: 0;
}

.lv2-page .tm-card__row-value {
    font-size: 14px;
    font-weight: 400;
    color: #0A0A0A;
    line-height: 1.5;
}

/* Card actions */
.lv2-page .tm-card__actions {
    display: flex;
    gap: 8px;
    padding-top: 16px;
}

.lv2-page .tm-btn-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 8px 28px;
    background: #FFFFFF;
    color: #0A0A0A;
    border: 1px solid #DFE4EA;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.lv2-page .tm-btn-cancel:hover {
    opacity: 0.85;
}

.lv2-page .tm-btn-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    height: 40px;
    padding: 8px 28px;
    background: #FFFFFF;
    color: #0A0A0A;
    border: 1px solid #0A0A0A;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.lv2-page .tm-btn-edit:hover {
    opacity: 0.85;
    color: #0A0A0A;
    text-decoration: none;
}

.lv2-page .tm-btn-edit svg {
    flex-shrink: 0;
}

/* Empty state */
.lv2-page .tm-empty {
    text-align: center;
    padding: 60px 20px;
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
}

.lv2-page .tm-empty p {
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 24px;
}

/* Logout */
.lv2-page .tm-actions {
    text-align: center;
    margin-top: 40px;
}

.lv2-page .tm-btn-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 10px 24px;
    background: #FFFFFF;
    color: #6B7280;
    border: 1px solid #DFE4EA;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.lv2-page .tm-btn-logout:hover {
    opacity: 0.85;
}

/* ========================================
   Tour Cancel Modal v2 (Figma 1711:33307)
======================================== */
.lv2-page .tm-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lv2-page .tm-modal-overlay.active {
    display: flex;
}

.lv2-page .tm-modal {
    background: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    max-width: 342px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lv2-page .tm-modal__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.lv2-page .tm-modal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FEEBEB;
    border-radius: 25px;
    flex-shrink: 0;
}

.lv2-page .tm-modal__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.lv2-page .tm-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.lv2-page .tm-modal__desc {
    font-size: 16px;
    font-weight: 400;
    color: #0A0A0A;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.lv2-page .tm-modal__reasons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 4px;
}

.lv2-page .tm-modal__reason-box {
    border: 1px solid #DFE4EA;
    border-radius: 8px;
    overflow: hidden;
}

.lv2-page .tm-modal__reason-header {
    background: #F3F4F6;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #6B7280;
    line-height: 1.5;
}

.lv2-page .tm-modal__reason-header--other {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.lv2-page .tm-modal__reason-header--other .tm-modal__reason-item--header {
    padding: 10px 16px;
    margin: 0;
    font-weight: 700;
    color: #6B7280;
}

.lv2-page .tm-modal__reason-list {
    display: flex;
    flex-direction: column;
}

.lv2-page .tm-modal__reason-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #0A0A0A;
    line-height: 1.5;
    margin: 0;
}

.lv2-page .tm-modal__reason-item input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #0A0A0A;
    margin: 0;
    flex-shrink: 0;
}

.lv2-page .tm-modal__reason-other-area {
    padding: 8px;
}

.lv2-page .tm-modal__other-input {
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 12px 16px;
    border: 1px solid #DFE4EA;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    color: #0A0A0A;
    resize: none;
    outline: none;
    box-sizing: border-box;
}

.lv2-page .tm-modal__other-input::placeholder {
    color: #9CA3AF;
}

.lv2-page .tm-modal__other-input:focus {
    border-color: #0A0A0A;
}

.lv2-page .tm-modal__buttons {
    display: flex;
    gap: 8px;
    width: 100%;
}

@media (max-width: 375px) {
    .lv2-page .tm-modal__buttons {
        flex-direction: column;
    }
}

.lv2-page .tm-modal__btn {
    flex: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.lv2-page .tm-modal__btn:hover {
    opacity: 0.85;
}

.lv2-page .tm-modal__btn.tm-modal__btn--outline:visited {
    text-decoration: none;
    color: #0A0A0A;
}

.lv2-page .tm-modal__btn--secondary {
    background: #FFFFFF;
    color: #0A0A0A;
    border: 1px solid #DFE4EA;
}

.lv2-page .tm-modal__btn--danger {
    background: #E10E0E;
    color: #FFFFFF;
    border: none;
}

.lv2-page .tm-modal__btn--outline {
    background: #FFFFFF;
    color: #0A0A0A;
    border: 1px solid #DFE4EA;
    text-decoration: none;
}

.lv2-page .tm-modal__btn--outline:hover {
    color: #0A0A0A;
    text-decoration: none;
}

.lv2-page a.tm-modal__btn--primary {
    background: #0A0A0A;
    color: #FFFFFF;
    border: none;
    text-decoration: none;
}

.lv2-page .tm-modal__btn--primary:hover {
    color: #FFFFFF;
    text-decoration: none;
}

/* Cancel complete modal */
.lv2-page .tm-modal--complete {
    text-align: center;
}

.lv2-page .tm-modal--complete .tm-modal__content {
    gap: 8px;
}

.lv2-page .tm-modal--complete .tm-modal__title {
    font-size: 20px;
}

.lv2-page .tm-modal__complete-desc {
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   PC Layout (>=768px)
======================================== */
@media (min-width: 768px) {
    .lv2-page .tr-container {
        padding: 50px 16px 100px;
    }

    .lv2-page .tr-heading__title {
        font-size: 32px;
    }

    .lv2-page .tr-property-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lv2-page .tr-schedule-container {
        display: flex;
    }

    .lv2-page .tr-calendar-section {
        flex: 0 0 488px;
        padding: 24px;
        border-right: none;
    }

    .lv2-page .tr-schedule-divider {
        display: block;
        width: 1.4px;
        background: #DFE4EA;
        flex-shrink: 0;
    }

    .lv2-page .tr-time-section {
        flex: 1;
        border-top: none;
        padding: 24px;
        display: flex;
        flex-direction: column;
    }

    .lv2-page .tr-time-section .tr-section-title {
        margin-bottom: 24px;
    }

    .lv2-page .tr-time-section__next-btn {
        margin-top: auto;
    }

    .lv2-page .tr-form-container {
        flex-direction: row;
        gap: 16px;
    }

    .lv2-page .tr-form-left {
        flex: 0 0 424px;
    }

    .lv2-page .tr-form-right {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .lv2-page .tr-form-buttons {
        margin-top: 0;
    }

    .lv2-page .tr-complete__card {
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
    }

    .lv2-page .tr-complete__buttons {
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Tour Management v2 PC */
    .lv2-page .tm-container {
        padding: 50px 16px 80px;
    }

    .lv2-page .tm-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lv2-page .tm-modal {
        max-width: 400px;
    }
}
