/* 원페이지 예약 시스템 스타일 */

/* CSS 변수 정의 - UX 개선된 브랜드 컬러 팔레트 */
:root {
    --font-size: 16px; /* 모바일 최소 16px */
    --background: #fdfcfa; /* 미색 계열 off-white */
    --foreground: #2c2c2c; /* 짙은 그레이 */
    --card: #ffffff;
    --card-foreground: #2c2c2c;
    --primary: #1a1a1a; /* 더 진한 텍스트 */
    --primary-foreground: #ffffff;
    --secondary: #f8f7f4; /* 부드러운 배경 */
    --secondary-foreground: #2c2c2c;
    --muted: #f0efe8; /* 연한 배경 */
    --muted-foreground: #6b6b6b; /* 부드러운 그레이 */
    --accent: #e9e8e3;
    --accent-foreground: #2c2c2c;
    --border: rgba(44, 44, 44, 0.08); /* 더 부드러운 테두리 */
    --input: transparent;
    --input-background: #f8f7f4;
    --selected: #ff8c42; /* 플럼 오렌지 계열 브랜드 컬러 */
    --selected-foreground: #ffffff;
    --selected-hover: #e6793a; /* 선택된 항목 호버 */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --radius: 0.75rem; /* 8px 라운딩 */
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* 타이포그래피 스케일 */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px - 모바일 본문 */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px - 모바일 헤딩 시작 */
    --text-2xl: 1.5rem;    /* 24px - 모바일 헤딩 */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    
    /* 간격 시스템 */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px - 모바일 기본 패딩 */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    
    /* 컨테이너 너비 */
    --container-sm: 100%;     /* 모바일 */
    --container-md: 768px;    /* 태블릿 */
    --container-lg: 1000px;   /* 데스크톱 최대 너비 */
}

/* 기본 리셋 및 전역 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Noto Sans KR", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    font-size: var(--text-base); /* 모바일 본문 16px */
    line-height: 1.5; /* 라인 높이 1.5 이상 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400; /* 일반 웨이트 */
}

/* 유틸리티 클래스 */
.min-h-screen {
    min-height: 100vh;
}

.bg-background {
    background-color: var(--background);
}

/* Fluid Container & Breakpoint 시스템 */
.container {
    width: 100%;
    margin: 0 auto;
    padding: var(--space-md); /* 모바일 16px 패딩 */
}

/* 태블릿 이상에서 중앙 정렬된 카드 너비 */
@media (min-width: 768px) {
    .container {
        max-width: var(--container-lg); /* 600px 최대 너비 */
        padding: var(--space-lg); /* 24px 패딩 */
    }
}

@media (min-width: 1024px) {
    .container {
        padding: var(--space-xl); /* 32px 패딩 */
    }
}

/* 헤더 스타일 */
.header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.header-title {
    font-size: var(--text-2xl); /* 24px - 모바일 헤딩 */
    font-weight: 600; /* 헤드라인 굵은 웨이트 */
    color: var(--primary);
    letter-spacing: -0.025em; /* 더 세련된 자간 */
}

.header-step {
    font-size: var(--text-sm); /* 14px */
    color: var(--muted-foreground);
    background: var(--muted);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-weight: 500;
}

/* 데스크톱에서 헤더 타이틀 더 크게 */
@media (min-width: 768px) {
    .header-title {
        font-size: var(--text-3xl); /* 30px */
    }
}

/* 그래픽 프로그레스바 - 시각적 개선 */
.progress-bar {
    height: 6px; /* 더 두껍게 */
    background: var(--muted);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--selected) 0%, var(--selected-hover) 100%);
    width: 100%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    position: relative;
    box-shadow: 0 1px 3px rgba(255, 140, 66, 0.3);
}

/* 프로그레스바 애니메이션 효과 */
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 메인 콘텐츠 레이아웃 - PC 우선, 모바일 조정 */
.main-content {
    display: grid;
    grid-template-columns: 1fr 400px; /* PC 기본: 좌측 입력, 우측 요약 */
    gap: var(--space-2xl); /* 48px 간격 */
    padding: var(--space-2xl) 0;
    align-items: start;
}

.input-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg); /* 24px 간격 */
}

.summary-section {
    position: sticky;
    top: 140px;
    height: fit-content;
}

/* 모바일에서 1열 레이아웃으로 변경 */
@media (max-width: 767px) {
    .main-content {
        display: flex;
        flex-direction: column;
        gap: var(--space-xl);
        padding: var(--space-lg) 0;
    }
    
    .input-section {
        order: 2; /* 모바일에서 요약 다음 */
    }
    
    .summary-section {
        order: 1; /* 모바일에서 상단 */
        position: static;
    }
}

/* 카드 컴포넌트 - 세련된 디자인 */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.card-header {
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
}

.card-content {
    padding: 0 var(--space-xl) var(--space-xl);
}

/* 모바일에서 카드 패딩 조정 */
@media (max-width: 767px) {
    .card-header {
        padding: var(--space-lg) var(--space-lg) var(--space-md);
    }
    
    .card-content {
        padding: 0 var(--space-lg) var(--space-lg);
    }
}

.field-title {
    font-size: var(--text-xl); /* 20px - 모바일 헤딩 시작 */
    font-weight: 600; /* 헤드라인 굵은 웨이트 */
    margin-bottom: var(--space-sm);
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.field-description {
    font-size: var(--text-base); /* 16px - 가독성 향상 */
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

/* 데스크톱에서 필드 타이틀 더 크게 */
@media (min-width: 768px) {
    .field-title {
        font-size: var(--text-2xl); /* 24px */
    }
}

/* 필드 컨테이너 - Dynamic Reveal 애니메이션 개선 */
.field-container {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.field-container.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.field-container.completed {
    opacity: 0.85;
    transform: scale(0.98);
    filter: grayscale(0.1);
}

/* 서비스 선택 */
.service-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr; /* 모바일 기본: 1열 */
}

/* 태블릿 이상에서 서비스 카드 레이아웃 조정 */
@media (min-width: 768px) {
    .service-grid {
        gap: var(--space-xl);
    }
}

/* 카드형 선택지 - 클릭 가능한 카드 디자인 */
.service-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--selected);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    background: rgba(255, 140, 66, 0.02);
}

.service-card.selected {
    border-color: var(--selected);
    background: rgba(255, 140, 66, 0.08);
    box-shadow: 0 0 0 1px var(--selected), var(--shadow-lg);
    transform: translateY(-2px);
}

/* 선택된 카드 체크 표시 */
.service-card.selected::after {
    content: '✓';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 24px;
    height: 24px;
    background: var(--selected);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
}

/* 아이콘 & 일러스트 - SVG 기반 벡터 선명도 */
.service-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 140, 66, 0.2));
}

.service-card.selected .service-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 140, 66, 0.3));
}

.service-info {
    flex: 1;
}

/* 타이포그래피 계층 분리 - 헤드라인 굵은 웨이트, 본문 일반 웨이트 */
.service-name {
    font-size: var(--text-xl); /* 20px */
    font-weight: 700; /* 헤드라인 더 굵은 웨이트 */
    margin-bottom: var(--space-sm);
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-description {
    font-size: var(--text-base); /* 16px - 가독성 향상 */
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    line-height: 1.5;
    font-weight: 400; /* 본문 일반 웨이트 */
}

.service-price {
    font-size: var(--text-lg); /* 18px */
    font-weight: 600;
    color: var(--selected);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

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

.feature-tag {
    font-size: 0.75rem;
    background: var(--muted);
    color: var(--muted-foreground);
    padding: 0.25rem 0.5rem;
    border-radius: calc(var(--radius) * 0.5);
}

/* 주거 형태 선택 */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

/* 태블릿 이상에서 주거형태 카드 간격 증가 */
@media (min-width: 768px) {
    .property-grid {
        gap: var(--space-xl);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.property-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card);
    position: relative;
    min-height: 140px;
    justify-content: center;
}

.property-card:hover {
    border-color: var(--selected);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    background: rgba(255, 140, 66, 0.02);
}

.property-card.selected {
    border-color: var(--selected);
    background: rgba(255, 140, 66, 0.08);
    box-shadow: 0 0 0 1px var(--selected), var(--shadow-lg);
    transform: translateY(-2px);
}

/* 주거형태 카드 체크 표시 */
.property-card.selected::after {
    content: '✓';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 20px;
    height: 20px;
    background: var(--selected);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: 600;
}

.property-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.property-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* 달력 위젯 - 현대적 디자인 */
.calendar-widget {
    max-width: 400px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
}

/* 선택된 날짜 표시 영역 */
.selected-date-display {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(255, 140, 66, 0.05) 100%);
    border: 2px solid var(--selected);
    border-radius: var(--radius);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.15);
    animation: fadeInUp 0.6s ease;
}

.selected-date-info {
    flex: 1;
}

.selected-date-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-date-value {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--selected);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.change-date-button {
    background: var(--selected);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

.change-date-button:hover {
    background: var(--selected-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4);
}

.change-date-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

/* 모바일에서 선택된 날짜 표시 최적화 */
@media (max-width: 767px) {
    .selected-date-display {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
        padding: var(--space-lg);
    }
    
    .selected-date-value {
        font-size: var(--text-xl);
    }
    
    .change-date-button {
        width: 100%;
        padding: var(--space-lg);
    }
}

/* 달력 숨기기/보이기 애니메이션 */
.calendar-widget.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-widget.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

.calendar-nav {
    background: var(--background);
    border: 2px solid var(--border);
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
}

.calendar-nav:hover {
    background: var(--selected);
    border-color: var(--selected);
    color: white;
    transform: scale(1.05);
}

.calendar-nav:active {
    transform: scale(0.95);
}

.calendar-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-align: center;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-width: 140px;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    position: relative;
}

/* 캘린더 날짜 - 현대적이고 깔끔한 디자인 */
.calendar-day.available {
    background: var(--card);
    color: var(--foreground);
    border: 1.5px solid var(--border);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.calendar-day.available:hover {
    background: rgba(255, 140, 66, 0.08);
    border-color: var(--selected);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.2);
    font-weight: 600;
}

/* 선택된 날짜 - 강력하고 명확한 시각적 피드백 */
.calendar-day.selected {
    background: linear-gradient(135deg, var(--selected) 0%, var(--selected-hover) 100%) !important;
    color: white !important;
    font-weight: 800 !important;
    border: 2px solid var(--selected) !important;
    transform: scale(1.12) !important;
    box-shadow: 
        0 8px 25px rgba(255, 140, 66, 0.4),
        0 0 0 3px rgba(255, 140, 66, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    z-index: 10;
    position: relative;
    animation: selected-glow 2s ease-in-out infinite;
}

/* 선택된 날짜에 체크 아이콘 */
.calendar-day.selected::before {
    content: '✓';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: white;
    color: var(--selected);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    border: 2px solid var(--selected);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 선택된 날짜 글로우 애니메이션 */
@keyframes selected-glow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(255, 140, 66, 0.4),
            0 0 0 3px rgba(255, 140, 66, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(255, 140, 66, 0.6),
            0 0 0 5px rgba(255, 140, 66, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* 모바일에서 선택된 날짜 최적화 */
@media (max-width: 767px) {
    .calendar-day.selected {
        transform: scale(1.15) !important;
        font-weight: 900 !important;
    }
    
    .calendar-day.selected::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        top: -3px;
        right: -3px;
    }
}

/* 선택된 날짜가 오늘일 때 특별 스타일 */
.calendar-day.selected.today {
    background: linear-gradient(135deg, var(--primary) 0%, var(--selected) 100%) !important;
    animation: selected-today-glow 2s ease-in-out infinite;
}

.calendar-day.selected.today::before {
    background: var(--selected);
    color: white;
    border-color: white;
}

@keyframes selected-today-glow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(26, 26, 26, 0.3),
            0 0 0 3px rgba(255, 140, 66, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(26, 26, 26, 0.5),
            0 0 0 5px rgba(255, 140, 66, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.calendar-day.unavailable {
    color: var(--muted-foreground);
    cursor: not-allowed;
    background: var(--muted);
    opacity: 0.4;
}

.calendar-day.today {
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    border: 2px solid var(--primary);
}

.calendar-day.today.available {
    background: linear-gradient(135deg, var(--primary) 0%, var(--selected) 100%);
    border-color: var(--selected);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    font-size: var(--text-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--muted-foreground);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.legend-dot.available {
    background: var(--card);
    border-color: var(--border);
}

.legend-dot.selected {
    background: linear-gradient(135deg, var(--selected) 0%, var(--selected-hover) 100%);
    border-color: var(--selected);
    box-shadow: 0 2px 4px rgba(255, 140, 66, 0.3);
}

.legend-dot.unavailable {
    background: var(--muted);
    border-color: var(--muted-foreground);
    opacity: 0.6;
}

/* 모바일에서 레전드 최적화 */
@media (max-width: 767px) {
    .calendar-legend {
        gap: var(--space-md);
        font-size: var(--text-xs);
        flex-wrap: wrap;
    }
    
    .legend-dot {
        width: 10px;
        height: 10px;
    }
}

/* 시간 선택 */
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-lg);
}

/* 태블릿 이상에서 시간 그리드 개선 */
@media (min-width: 768px) {
    .time-grid {
        gap: var(--space-xl);
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* 시간 리스트 - 사용자 메모리에 따라 한 줄에 하나씩 표시 */
.time-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 400px;
    margin: 0 auto;
}

/* 시간 선택 - 가용 시간 강조 */
.time-slot {
    padding: var(--space-lg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card);
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.time-slot:hover {
    border-color: var(--selected);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    background: rgba(255, 140, 66, 0.02);
}

.time-slot.selected {
    border-color: var(--selected);
    background: rgba(255, 140, 66, 0.08);
    box-shadow: 0 0 0 1px var(--selected), var(--shadow-lg);
    transform: translateY(-1px);
}

/* 가용 시간 표시 */
.time-slot.available {
    border-color: var(--success);
    background: rgba(34, 197, 94, 0.02);
}

.time-slot.available:hover {
    border-color: var(--selected);
    background: rgba(255, 140, 66, 0.05);
}

/* 비활성 시간 (예약 불가) */
.time-slot.unavailable {
    border-color: var(--muted);
    background: var(--muted);
    color: var(--muted-foreground);
    cursor: not-allowed;
    opacity: 0.5;
}

.time-slot.unavailable:hover {
    transform: none;
    box-shadow: none;
}

/* 시간 슬롯 체크 표시 */
.time-slot.selected::after {
    content: '✓';
    position: absolute;
    top: var(--space-xs);
    right: var(--space-xs);
    width: 20px;
    height: 20px;
    background: var(--selected);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: 600;
}

.time-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.time-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* 주소 입력 */
.address-input-group {
    position: relative;
}

.address-input,
.address-detail-input {
    width: 100%;
    min-height: 48px;
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--input-background);
    font-size: var(--text-base);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.address-input:focus,
.address-detail-input:focus {
    outline: none;
    border-color: var(--selected);
    background: var(--card);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
    transform: translateY(-1px);
}

.address-input:hover,
.address-detail-input:hover {
    border-color: var(--selected);
    background: var(--card);
}

.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 50;
    max-height: 200px;
    overflow-y: auto;
}

.address-suggestion {
    padding: 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.address-suggestion:hover {
    background: var(--muted);
}

.address-suggestion:last-child {
    border-bottom: none;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.address-note-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--input-background);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: all 0.2s ease;
}

.address-note-input:focus {
    outline: none;
    border-color: var(--selected);
    box-shadow: 0 0 0 1px var(--selected);
}

.map-container {
    margin-top: 1rem;
    height: 200px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    color: var(--muted-foreground);
}

/* 전화번호 입력 */
.phone-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* 인풋 타입 최적화 - 향상된 UX */
.phone-input {
    flex: 1;
    min-height: 48px; /* 모바일 터치 최소 높이 */
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--input-background);
    font-size: var(--text-base); /* 16px - 모바일 줌 방지 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.phone-input:focus {
    outline: none;
    border-color: var(--selected);
    background: var(--card);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
    transform: translateY(-1px);
}

.phone-input:hover {
    border-color: var(--selected);
    background: var(--card);
}

.otp-button,
.verify-button {
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.otp-button:hover,
.verify-button:hover {
    background: var(--selected);
}

.otp-button:disabled,
.verify-button:disabled {
    background: var(--muted);
    color: var(--muted-foreground);
    cursor: not-allowed;
}

.otp-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.75rem;
}

.otp-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--input-background);
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.5rem;
    transition: all 0.2s ease;
}

.otp-input:focus {
    outline: none;
    border-color: var(--selected);
    box-shadow: 0 0 0 1px var(--selected);
}

.otp-timer {
    font-size: 0.875rem;
    color: var(--error);
    font-weight: 600;
    min-width: 50px;
}

.phone-verified {
    color: var(--success);
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius);
    margin-top: 0.75rem;
}

/* 파일 업로드 */
.file-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--selected);
    background: rgba(255, 149, 0, 0.05);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.upload-main {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.upload-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.uploaded-files {
    margin-top: 1rem;
}

.uploaded-file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
}

.file-preview {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.file-size {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.file-remove {
    background: var(--error);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* 예약 요약 */
.summary-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.summary-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--muted);
}

.summary-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.summary-content {
    padding: 1.5rem;
    min-height: 200px;
}

.summary-empty {
    color: var(--muted-foreground);
    text-align: center;
    font-style: italic;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item:hover {
    background: rgba(255, 140, 66, 0.02);
    margin: 0 calc(-1 * var(--space-lg));
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    border-radius: var(--radius);
}

.summary-label {
    font-weight: 500;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

.summary-value {
    font-weight: 600;
    text-align: right;
    font-size: var(--text-base);
    color: var(--foreground);
}

/* 새로 추가된 항목 강조 애니메이션 */
.summary-item.new-item {
    animation: highlight-new-item 1s ease;
}

@keyframes highlight-new-item {
    0% {
        background: rgba(255, 140, 66, 0.2);
        transform: scale(1.02);
    }
    100% {
        background: transparent;
        transform: scale(1);
    }
}

/* Summary Footer - PC에서 일반, 모바일에서 Sticky */
.summary-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--border);
}

/* 모바일에서 Sticky Footer 구현 */
@media (max-width: 767px) {
    .summary-card {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: var(--radius) var(--radius) 0 0;
        box-shadow: var(--shadow-xl);
        z-index: 1000;
        border-bottom: none;
        margin: var(--space-md); /* 모바일 좌우 여백 */
        left: var(--space-md);
        right: var(--space-md);
        width: auto;
    }
    
    .summary-header,
    .summary-content {
        display: none; /* 모바일에서는 버튼만 표시 */
    }
    
    .summary-footer {
        padding: var(--space-md);
        border-top: none;
        background: var(--card);
    }
    
    /* 메인 콘텐츠 하단 여백 확보 */
    .main-content {
        padding-bottom: 120px; /* Sticky Footer 공간 확보 */
    }
}

/* Full-width 버튼 - 48px 이상 높이, 브랜드 컬러 */
.reservation-button {
    width: 100%;
    min-height: 48px; /* 모바일 터치 최소 높이 */
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--selected) 0%, var(--selected-hover) 100%);
    color: var(--selected-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: var(--text-lg); /* 18px */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    letter-spacing: -0.01em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.reservation-button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--selected-hover) 0%, #d4662e 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.reservation-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

.reservation-button:disabled {
    background: var(--muted);
    color: var(--muted-foreground);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

/* 로딩 상태 */
.reservation-button.loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* 모달 (RSR02) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-dialog {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted-foreground);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--muted);
}

.modal-content {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.modal-button {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.modal-button.secondary {
    background: var(--card);
    color: var(--foreground);
}

.modal-button.secondary:hover {
    background: var(--muted);
}

.modal-button.primary {
    background: var(--selected);
    color: var(--selected-foreground);
    border-color: var(--selected);
}

.modal-button.primary:hover {
    background: #e8860d;
}

/* 완료 화면 (RSR03) */
.completion-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.completion-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.completion-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.completion-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--success);
}

.completion-message {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.completion-summary {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.completion-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.action-button {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.action-button:hover {
    background: var(--muted);
    transform: translateY(-1px);
}

.action-button.kakao:hover {
    background: #fee500;
    border-color: #fee500;
}

.new-reservation-button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.new-reservation-button:hover {
    background: var(--selected);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* 소셜 로그인 */
.social-login {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}

.social-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.social-button.kakao:hover {
    background: #fee500;
    border-color: #fee500;
}

.social-button.naver:hover {
    background: #03c75a;
    color: white;
    border-color: #03c75a;
}

.social-button.apple:hover {
    background: #000;
    color: white;
    border-color: #000;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .summary-section {
        position: static;
        order: -1;
    }
    
    .summary-card {
        position: sticky;
        top: 140px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 0.75rem;
    }
    
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .otp-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .completion-content {
        padding: 1rem;
    }
    
    .completion-actions {
        flex-direction: column;
    }
    
    .social-login {
        position: static;
        margin: 1rem auto;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .calendar-widget {
        max-width: 100%;
    }
    
    .calendar {
        gap: 0.125rem;
    }
    
    .calendar-day {
        font-size: 0.75rem;
    }
    
    .completion-title {
        font-size: 1.5rem;
    }
    
    .completion-message {
        font-size: 1rem;
    }
}

/* 부드러운 페이드·슬라이드 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* 스크롤 기반 애니메이션 */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
    animation: slideInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-left {
    animation: slideInFromLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 호버 애니메이션 */
.gentle-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gentle-hover:hover {
    animation: gentle-bounce 0.6s ease-in-out;
}

/* 접근성 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* WCAG 가이드 준수 - 접근성 개선 */

/* 포커스 표시 - 키보드 네비게이션 */
*:focus-visible {
    outline: 3px solid var(--selected);
    outline-offset: 2px;
    border-radius: 2px;
}

/* 고대비 포커스 링 */
.service-card:focus-visible,
.property-card:focus-visible,
.time-slot:focus-visible {
    outline: 3px solid var(--selected);
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.2);
}

/* 버튼 포커스 */
.reservation-button:focus-visible,
.otp-button:focus-visible,
.verify-button:focus-visible {
    outline: 3px solid var(--primary-foreground);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3);
}

/* 입력 필드 포커스 개선 */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--selected);
    outline-offset: 2px;
}

/* 스크린리더 전용 텍스트 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 고대비 모드 지원 */
@media (prefers-contrast: high) {
    :root {
        --border: #000000;
        --muted-foreground: #000000;
        --background: #ffffff;
        --foreground: #000000;
    }
    
    .service-card,
    .property-card,
    .time-slot {
        border-width: 3px;
    }
}

/* 모션 감소 설정 존중 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .field-container {
        transition: none;
    }
    
    .service-card,
    .property-card,
    .time-slot {
        transition: none;
    }
}

/* 선택 불가능한 텍스트 */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 실시간 밸리데이션 & 피드백 */
.field-error {
    color: var(--error);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    animation: fadeInUp 0.3s ease;
}

.field-error::before {
    content: '⚠️';
    font-size: var(--text-xs);
}

.field-success {
    color: var(--success);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    animation: fadeInUp 0.3s ease;
}

.field-success::before {
    content: '✓';
    font-size: var(--text-xs);
}

.field-help {
    color: var(--muted-foreground);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(107, 107, 107, 0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--muted-foreground);
    display: none; /* 기본적으로 숨김 */
}

.field-help.show {
    display: block;
    animation: slideInFromLeft 0.3s ease;
}

/* 입력 필드 상태별 스타일 */
.input-error {
    border-color: var(--error) !important;
    background: rgba(239, 68, 68, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.input-success {
    border-color: var(--success) !important;
    background: rgba(34, 197, 94, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}

/* 도움말 토글 버튼 */
.help-toggle {
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    font-size: var(--text-sm);
    padding: var(--space-xs);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.help-toggle:hover {
    background: var(--muted);
    color: var(--selected);
}

.help-toggle.active {
    background: var(--selected);
    color: white;
}

/* 스크롤바 스타일 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--muted-foreground);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--selected);
}
