        body {
            font-family: 'Vazirmatn', sans-serif;
        }

        .glass-card {
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            box-shadow: 0 15px 35px rgba(0,0,0,.06);
        }

        .soft-shadow {
            box-shadow: 0 10px 25px rgba(0,0,0,.07);
        }

        .form-control {
            width: 100%;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            padding: 16px;
            border-radius: 16px;
            outline: none;
            transition: all .2s ease;
            color: #111827;
        }

        .form-control:focus {
            border-color: #7b9d78;
            background: #fff;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
            line-height: 1.9;
        }

        .required-star {
            color: #dc2626;
            margin-right: 4px;
        }

        .hint {
            margin-top: 6px;
            font-size: 12px;
            color: #6b7280;
            line-height: 1.8;
        }

        .section-box {
            border-top: 1px solid #e5e7eb;
            padding-top: 24px;
            margin-top: 24px;
        }

        .section-title {
            font-size: 18px;
            font-weight: 900;
            color: #1f2937;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title span {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: #eef5ed;
            color: #7b9d78;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 900;
        }

        .degree-item {
            background: #ffffff;
            border: 1px solid #e2ebd8;
            border-radius: 20px;
            padding: 20px;
            position: relative;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .degree-item:hover {
            border-color: #7b9d78;
        }

        .checkbox-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 16px;
        }

        .checkbox-row input[type="checkbox"] {
            margin-top: 6px;
            accent-color: #7b9d78;
        }

        .checkbox-row label {
            color: #4b5563;
            font-size: 14px;
            line-height: 1.9;
        }

        /* استایل دکمه در حالت غیرفعال */
        .btn-disabled {
            background-color: #e5e7eb !important;
            color: #9ca3af !important;
            cursor: not-allowed !important;
            border-color: #d1d5db !important;
            opacity: 0.7;
        }

        /* ==== انتخاب چندگانه حیطه‌های تخصصی ==== */
        .specialties-box {
            width: 100%;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 10px 12px;
            transition: all .2s ease;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            min-height: 56px;
            cursor: text;
        }
        .specialties-box.focused { border-color: #7b9d78; }

        .specialty-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #eef5ed;
            color: #4b6a48;
            border: 1px solid #d8e8d6;
            padding: 6px 10px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 700;
        }
        .specialty-tag button {
            background: none;
            border: none;
            color: #7b9d78;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            padding: 0;
            display: inline-flex;
        }
        .specialty-tag button:hover { color: #dc2626; }

        .specialties-input {
            border: none;
            outline: none;
            flex: 1;
            min-width: 120px;
            background: transparent;
            font-family: inherit;
            font-size: 14px;
            color: #111827;
            padding: 6px 4px;
        }

        .specialties-dropdown {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,.08);
            max-height: 240px;
            overflow-y: auto;
            z-index: 40;
            display: none;
        }
        .specialties-dropdown.open { display: block; }

        .specialty-option {
            padding: 12px 14px;
            cursor: pointer;
            font-size: 14px;
            color: #374151;
            border-bottom: 1px solid #f3f4f6;
            transition: background .15s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .specialty-option:last-child { border-bottom: none; }
        .specialty-option:hover,
        .specialty-option.active { background: #eef5ed; color: #4b6a48; }
        .specialty-option .cat { font-size: 11px; color: #9ca3af; }

        .specialties-empty {
            padding: 14px;
            text-align: center;
            color: #9ca3af;
            font-size: 13px;
        }
        .specialties-counter {
            font-size: 12px;
            color: #6b7280;
            margin-top: 6px;
        }
    
