        /* ===== 1. 전체 배경색 변경 ===== */
        body {
            font-family: 'Noto Sans KR', sans-serif;
            background-color: #F5F3F9;
            background-image: url('../images/bg-main.png');
            /* 새 배경 이미지 */
            background-attachment: fixed;
            /* 스크롤해도 배경은 고정 */
            background-size: cover;
            /* 배경 이미지를 화면에 꽉 채움 */
            background-position: center;
            /* 배경 이미지를 중앙에 위치 */
        }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .feature-section {
            display: none;
        }

        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #A08CDA;
            border-radius: 50%;
            /* 색상 변경 */
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Chat UI */
        .chat-bubble {
            max-width: 85%;
        }

        .chat-bubble-user {
            background-color: #A08CDA;
            color: white;
            border-radius: 20px 20px 5px 20px;
        }

        /* 색상 변경 */
        .chat-bubble-ai {
            background-color: #e5e7eb;
            color: #1f2937;
            border-radius: 20px 20px 20px 5px;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* Tab Styles */
        .tab-btn {
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            border-color: #A08CDA;
            color: #A08CDA;
        }

        /* 색상 변경 */
        /* Prose styles for result */
        .prose h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .prose h4 {
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .prose p {
            margin-bottom: 1rem;
            line-height: 1.75;
        }

        .prose ul {
            list-style-position: inside;
            padding-left: 0;
        }

        .prose li {
            margin-bottom: 0.5rem;
        }

        .prose .result-card {
            background-color: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        }

        /* Quiz UI Styles */
        .quiz-options-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .quiz-options-container input[type="radio"] {
            display: none;
        }

        .quiz-options-container label {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border: 2px solid transparent;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.75rem;
            /* Emoji size */
            transition: all 0.2s ease-in-out;
            background-color: #f3f4f6;
        }

        .quiz-options-container input[type="radio"]:checked+label {
            transform: scale(1.2);
            border-color: #A08CDA;
            /* 색상 변경 */
        }

        @media (max-width: 640px) {
            .quiz-options-container label {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
        }

        /* New Selection Box Styles */
        .selection-box {
            display: inline-block;
            padding: 8px 12px;
            margin: 4px;
            border: 1px solid #d1d5db;
            /* gray-300 */
            border-radius: 16px;
            /* rounded-full */
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 0.875rem;
            /* text-sm */
            background-color: #f9fafb;
            /* gray-50 */
        }

        .selection-box:hover {
            background-color: #f3f4f6;
            /* gray-100 */
            border-color: #9ca3af;
            /* gray-400 */
        }

        /* ===== 2. 선택 박스 색상 변경 ===== */
        .selection-box.selected {
            background-color: #EAE6F6;
            border-color: #A08CDA;
            color: #8A73C8;
            font-weight: 500;
        }

        #login-section {
            background-image: url('../images/bg-login.jpeg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* ===== 3. 파스텔 테마 추가 스타일 ===== */
        .pastel-bg-primary {
            background-color: #A08CDA !important;
        }

        .pastel-bg-primary-hover:hover {
            background-color: #8A73C8 !important;
        }

        .pastel-bg-icon-1 {
            background-color: #EAE6F6 !important;
        }

        .pastel-text-icon-1 {
            color: #A592D5 !important;
        }

        .pastel-bg-icon-2 {
            background-color: #E3DFF2 !important;
        }

        .pastel-text-icon-2 {
            color: #8F7AC8 !important;
        }

        /* ===== 4. 완료 상태 및 다시하기 버튼 스타일 추가 ===== */
        .f1-main-card.completed {
            border: 2px solid #A08CDA;
            background-color: #F9F7FD;
        }

        .completion-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: #A08CDA;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .card-button-container {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .view-result-button {
            background-color: #A08CDA;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .view-result-button:hover {
            background-color: #8A73C8;
        }

        .reset-button {
            background-color: #e5e7eb;
            color: #4b5563;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            transition: background-color 0.2s;
        }

        .reset-button:hover {
            background-color: #d1d5db;
        }

        /* ===== 5. 사회 경험 UI 개선 스타일 ===== */
        .form-label {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-label svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.5rem;
            color: #A08CDA;
        }

        .task-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .task-input {
            flex-grow: 1;
        }

        .delete-task-btn,
        .add-task-btn {
            background-color: transparent;
            border: none;
            cursor: pointer;
            padding: 0.25rem;
        }

        .delete-task-btn svg {
            color: #ef4444;
        }

        .add-task-btn {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: center;
            padding: 0.5rem;
            border: 2px dashed #d1d5db;
            border-radius: 0.375rem;
            color: #6b7280;
            margin-top: 0.5rem;
            transition: all 0.2s;
        }

        .add-task-btn:hover {
            background-color: #f3f4f6;
            border-color: #A08CDA;
            color: #A08CDA;
        }

        .add-task-btn svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        .experience-card {
            background-color: #ffffff;
            border-radius: 0.75rem;
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .experience-card .exp-type-badge {
            display: inline-block;
            background-color: #EAE6F6;
            color: #8A73C8;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .experience-card ul {
            list-style: disc;
            padding-left: 1.5rem;
        }

        /* Scenario Quiz Styles */
        .scenario-question {
            background-color: white;
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        }

        .scenario-question p {
            font-weight: 600;
            margin-bottom: 1rem;
            color: #374151;
        }

        .scenario-option {
            display: block;
            background-color: #f9fafb;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .scenario-option:hover {
            background-color: #f3f4f6;
            border-color: #9ca3af;
        }

        .scenario-option input {
            display: none;
        }

        .scenario-option input:checked+span {
            font-weight: 600;
            color: #8A73C8;
        }

        .scenario-option input:checked+span::before {
            content: '✔ ';
        }

        /* ===== 6. 자소서 문항 카드 UI 스타일 ===== */
        .category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            /* gray-200 */
            border-radius: 0.75rem;
            /* rounded-xl */
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            background-color: white;
            height: 100px;
        }

        .category-card:hover {
            border-color: #A08CDA;
            background-color: #F9F7FD;
            transform: translateY(-4px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .category-card.selected {
            border-color: #A08CDA;
            background-color: #EAE6F6;
            color: #8A73C8;
            font-weight: 700;
        }

        .category-card svg {
            width: 2rem;
            /* w-8 */
            height: 2rem;
            /* h-8 */
            margin-bottom: 0.5rem;
            /* mb-2 */
        }

        .category-card-text {
            font-size: 0.875rem;
            /* text-sm */
        }

        #f2-question-detail-container {
            transition: opacity 0.3s ease-in-out;
        }

        /* ===== 7. 업무 성향 진단 UI (1/2순위) ===== */
        .scenario-option.work-style-option {
            position: relative;
            padding-right: 4.5rem;
            /* 배지 공간 확보 */
        }

        .scenario-option .priority-badge {
            position: absolute;
            right: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.875rem;
            font-weight: 700;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            color: white;
            display: none;
            /* 기본 숨김 */
        }

        /* 1순위 배지 (JS가 텍스트를 "1순위"로 설정) */
        .scenario-option.priority-1 .priority-badge {
            display: block;
            background-color: #A08CDA;
            /* Primary color */
        }

        /* 2순위 배지 (JS가 텍스트를 "2순위"로 설정) */
        .scenario-option.priority-2 .priority-badge {
            display: block;
            background-color: #8A73C8;
            /* Darker primary */
        }