:root {
            --primary-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            --secondary-bg: #ffffff;
            --card-bg: #ffffff;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --border-color: #e5e7eb;
            --accent-color: #3b82f6;
            --accent-secondary: #06b6d4;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] {
            --primary-bg: linear-gradient(135deg, #0e1218, #171c24);
            --secondary-bg: #0e1218;
            --card-bg: #171c24;
            --text-primary: #d3dbe4;
            --text-secondary: #929ba6;
            --border-color: #323940;
            --accent-color: #3b82f6;
            --accent-secondary: #06b6d4;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.6);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--primary-bg);
            color: var(--text-primary);
            min-height: 100vh;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] body {
            backdrop-filter: blur(10px);
        }



        [data-theme="dark"] .container {
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
        }

        .card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            background-color: #f5f5f5 !important;
        }

        [data-theme="dark"] .card {
            backdrop-filter: blur(10px);
            background-color: #0f1419 !important;
        }

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

        .header {
            background: var(--card-bg);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
        }

        .profile-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .profile-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            font-weight: bold;
            font-size: 18px;
            position: relative;
            box-shadow: none !important;
            animation: none !important;
        }
        
        .profile-avatar img {
            box-shadow: none !important;
            animation: none !important;
        }

        .status-badge {
            background: var(--success-color);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 500;
        }

        .level-badge {
            background: var(--warning-color);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 500;
        }

        .theme-toggle {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            min-width: 44px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--card-bg);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
            color: var(--text-primary);
        }

        .theme-toggle:hover {
            background: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }
        
        /* 테마 토글 아이콘 크기 통일 */
        .theme-toggle i,
        #theme-icon {
            font-size: 18px !important;
            width: 18px !important;
            height: 18px !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
        
        /* 헤더 버튼 그룹 - 표준 정렬 방식 */
        .header-button-group {
            display: flex;
            align-items: stretch;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .header-button-group > * {
            height: 44px;
            box-sizing: border-box;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 모바일 반응형 */
        @media (max-width: 768px) {
            .header-button-group {
                width: 100%;
                gap: 8px;
            }
            
            .header-button-group > a,
            .header-button-group > select {
                flex: 1 1 auto;
                min-width: 0;
                font-size: 12px;
                padding: 0 8px;
            }
            
            .header-button-group > a:first-child {
                flex: 0 0 auto;
                width: auto;
            }
            
            .header-button-group > select {
                flex: 1 1 0;
                min-width: 120px;
            }
            
            .header-button-group > a:nth-child(3) {
                flex: 1 1 0;
                min-width: 140px;
            }
            
            .header-button-group > button {
                flex: 0 0 44px;
            }
            
            /* 모바일에서 텍스트 숨김 (아이콘만 표시) */
            @media (max-width: 480px) {
                .header-btn-text {
                    display: none;
                }
                
                .header-button-group > a {
                    min-width: 44px;
                    padding: 0 8px;
                }
                
                .header-button-group > a i {
                    margin-right: 0 !important;
                }
            }
        }

        .location-time {
            text-align: right;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .mission-card {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
            color: white;
            border: none;
        }

        .mission-new-badge {
            background: var(--danger-color);
            color: white;
            padding: 2px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 8px;
        }

        .mission-details {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 16px;
            margin: 16px 0;
        }

        .mission-route {
            font-size: 14px;
            opacity: 0.9;
        }

        .mission-time {
            font-size: 12px;
            opacity: 0.8;
        }

        .mission-price {
            font-size: 24px;
            font-weight: bold;
            text-align: right;
        }

        .btn-primary {
            background: white;
            color: var(--accent-color);
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 16px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            font-size: 16px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
        }

        .action-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 16px;
        }

        .btn-secondary {
            background: var(--card-bg);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-emergency {
            background: var(--danger-color);
            color: white;
            border: none;
        }

        .completed-mission {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .completed-mission:last-child {
            border-bottom: none;
        }

        .mission-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .mission-info {
            flex: 1;
        }

        .mission-title {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .mission-meta {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .rating {
            color: var(--warning-color);
            font-weight: 600;
            font-size: 14px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
            text-align: center;
        }

        .stat-item {
            padding: 16px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .bottom-nav {
            position: sticky;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            background: var(--card-bg);
            border-top: 1px solid var(--border-color);
            padding: 12px 0;
            display: flex;
            justify-content: space-around;
            z-index: 100;
            margin-top: auto;
        }

        [data-theme="dark"] .bottom-nav {
            backdrop-filter: blur(10px);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 12px;
        }

        .nav-item.active,
        .nav-item:hover {
            color: var(--accent-color);
            background: rgba(59, 130, 246, 0.1);
        }

        .nav-icon {
            font-size: 18px;
        }

        .nav-label {
            font-size: 10px;
            font-weight: 500;
        }

        .content {
            padding: 20px;
            flex: 1;
        }

        /* 모바일에서는 기존 레이아웃 유지 */
        .main-content,
        .sidebar-content {
            display: contents;
        }

        /* PC 네비게이션은 모바일에서 숨김 */
        .pc-navigation {
            display: none;
        }

        .container {
            max-width: 430px;
            margin: 0 auto;
            background: var(--secondary-bg);
            min-height: 100vh;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        /* PC 반응형 - 첨부 이미지와 같은 2열 레이아웃 */
        @media (min-width: 1024px) {
            .container {
                max-width: 1600px;
                margin: 20px auto;
                border-radius: 20px;
                box-shadow: var(--shadow-hover);
                min-height: calc(100vh - 40px);
            }

            .header {
                border-radius: 20px 20px 0 0;
                padding: 24px 32px;
            }

            .content {
                display: grid;
                grid-template-columns: 1fr 400px;
                gap: 32px;
                padding: 32px;
                align-items: start;
            }

            .main-content {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .sidebar-content {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .bottom-nav {
                position: static;
                margin-top: 20px;
                width: 100%;
                max-width: none;
                border-radius: 16px;
                box-shadow: var(--shadow);
                padding: 16px;
                backdrop-filter: blur(10px);
                border: 1px solid var(--border-color);
            }

            .nav-item {
                padding: 12px 20px;
                min-width: 80px;
            }

            .nav-icon {
                font-size: 20px;
            }

            .nav-label {
                font-size: 12px;
            }

            /* PC에서는 인라인 네비게이션 표시, 기존 하단 네비게이션 숨김 */
            .pc-navigation {
                display: block;
            }

            .container>.bottom-nav {
                display: none;
            }
        }

        .notice-card {
            background: #4a4a4a;
            color: white;
            border: none;
        }

        [data-theme="dark"] .notice-card {
            background: #2a2a2a;
        }

        .btn-schedule {
            background: #4a4a4a !important;
            color: white !important;
            border: none !important;
        }

        [data-theme="dark"] .btn-schedule {
            background: #2a2a2a !important;
        }

        .chart-container {
            height: 200px;
            margin: 16px 0;
        }

        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-bg {
            fill: none;
            stroke: var(--border-color);
            stroke-width: 8;
        }

        .progress-fill {
            fill: none;
            stroke: var(--accent-color);
            stroke-width: 8;
            stroke-linecap: round;
            transition: stroke-dashoffset 0.5s ease;
        }

        /* 입력 폼 스타일 */
        input[type="text"],
        input[type="email"],
        input[type="url"],
        input[type="tel"],
        input[type="file"],
        textarea,
        select {
            background-color: var(--card-bg);
            color: var(--text-primary);
            border-color: var(--border-color);
        }

        input[type="text"]::placeholder,
        input[type="email"]::placeholder,
        input[type="url"]::placeholder,
        input[type="tel"]::placeholder,
        textarea::placeholder {
            color: var(--text-secondary);
        }

        /* 다크 모드 입력 폼 추가 스타일 */
        [data-theme="dark"] input[type="text"],
        [data-theme="dark"] input[type="email"],
        [data-theme="dark"] input[type="url"],
        [data-theme="dark"] input[type="tel"],
        [data-theme="dark"] input[type="file"],
        [data-theme="dark"] textarea,
        [data-theme="dark"] select {
            background-color: rgba(30, 41, 59, 0.6);
            color: #e2e8f0;
            border-color: rgba(59, 130, 246, 0.2);
        }

        [data-theme="dark"] input[type="text"]::placeholder,
        [data-theme="dark"] input[type="email"]::placeholder,
        [data-theme="dark"] input[type="url"]::placeholder,
        [data-theme="dark"] input[type="tel"]::placeholder,
        [data-theme="dark"] textarea::placeholder {
            color: #94a3b8;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card {
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .card:nth-child(5) {
            animation-delay: 0.5s;
        }