:root,
html[data-theme="light"] {
    color-scheme: light;

    --bk-bg: #f8fafc;
    --bk-page: #ffffff;
    --bk-surface: #ffffff;
    --bk-surface-2: #f1f5f9;
    --bk-surface-3: #e2e8f0;

    --bk-text: #0f172a;
    --bk-muted: #475569;
    --bk-soft: #64748b;

    --bk-border: #dbe3ea;
    --bk-border-strong: #b6c7d6;

    --bk-primary: #0d9488;
    --bk-primary-hover: #0f766e;
    --bk-primary-soft: #ccfbf1;

    --bk-brand: #4f46e5;
    --bk-brand-hover: #4338ca;
    --bk-brand-soft: #e0e7ff;

    --bk-success: #16a34a;
    --bk-danger: #dc2626;
    --bk-warning: #d97706;
    --bk-info: #2563eb;

    --bk-input-bg: #ffffff;
    --bk-input-border: #cbd5e1;
    --bk-input-text: #0f172a;
    --bk-input-placeholder: #94a3b8;

    --bk-sidebar-bg: #f8fafc;
    --bk-sidebar-surface: #ffffff;
    --bk-sidebar-active: #ecfdf5;

    --bk-header-bg: rgba(255, 255, 255, 0.92);

    --bk-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    --bk-shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.06);

    --bk-radius-xl: 22px;
    --bk-radius-lg: 18px;
    --bk-radius-md: 12px;
    --bk-radius-sm: 10px;
}

html[data-theme="dark"] {
    color-scheme: dark;

    --bk-bg: #0f1729;
    --bk-page: #111827;
    --bk-surface: #111c33;
    --bk-surface-2: #16233d;
    --bk-surface-3: #1b2a47;

    --bk-text: #f8fafc;
    --bk-muted: #cbd5e1;
    --bk-soft: #94a3b8;

    --bk-border: rgba(148, 163, 184, 0.22);
    --bk-border-strong: rgba(148, 163, 184, 0.34);

    --bk-primary: #2dd4bf;
    --bk-primary-hover: #14b8a6;
    --bk-primary-soft: rgba(45, 212, 191, 0.14);

    --bk-brand: #6366f1;
    --bk-brand-hover: #4f46e5;
    --bk-brand-soft: rgba(99, 102, 241, 0.16);

    --bk-success: #22c55e;
    --bk-danger: #f87171;
    --bk-warning: #f59e0b;
    --bk-info: #60a5fa;

    --bk-input-bg: rgba(15, 23, 42, 0.56);
    --bk-input-border: rgba(148, 163, 184, 0.28);
    --bk-input-text: #f8fafc;
    --bk-input-placeholder: #94a3b8;

    --bk-sidebar-bg: #0b1022;
    --bk-sidebar-surface: #111827;
    --bk-sidebar-active: rgba(99, 102, 241, 0.16);

    --bk-header-bg: rgba(15, 23, 41, 0.88);

    --bk-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    --bk-shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.24);
}

html,
body {
    background: var(--bk-bg);
    color: var(--bk-text);
}

body {
    transition: background-color 0.2s ease, color 0.2s ease;
}

.form-label,
.bk-label,
label {
    color: var(--bk-muted);
    font-weight: 600;
}

input,
select,
textarea {
    background: var(--bk-input-bg);
    color: var(--bk-input-text);
    border-color: var(--bk-input-border);
}

input::placeholder,
textarea::placeholder {
    color: var(--bk-input-placeholder);
}

.bk-card {
    background: var(--bk-surface);
    border: 1px solid var(--bk-border);
    box-shadow: var(--bk-shadow-soft);
    border-radius: var(--bk-radius-lg);
}

.bk-muted {
    color: var(--bk-muted);
}

.bk-soft {
    color: var(--bk-soft);
}

.bk-primary-btn {
    background: linear-gradient(135deg, var(--bk-primary), var(--bk-brand));
    color: #ffffff;
    border: 0;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(13, 148, 136, 0.22);
}

.bk-primary-btn:hover {
    filter: brightness(0.98);
}

.bk-danger {
    color: var(--bk-danger);
}

.bk-success {
    color: var(--bk-success);
}

.bk-warning {
    color: var(--bk-warning);
}

/* ===================== FINAL READABILITY FIX ===================== */

/* ===================== PROFESSIONAL UPLOAD UI ===================== */

.identity-page .upload-card {
    background: var(--bk-surface-2) !important;
    border: 1px solid var(--bk-border) !important;
    box-shadow: var(--bk-shadow-soft) !important;
}

.identity-page .photo-row {
    align-items: center !important;
}

.identity-page .upload-btn {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 12px !important;
    padding: 0 18px !important;
    background: var(--bk-primary) !important;
    border: 1px solid transparent !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 22px rgba(13, 148, 136, 0.18) !important;
}

.identity-page .upload-btn:hover {
    background: var(--bk-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.identity-page .upload-btn input[type="file"] {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    border: 0 !important;
    padding: 0 !important;
}

.identity-page .upload-file-name {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 12px !important;
    padding: 0 14px !important;
    background: var(--bk-surface) !important;
    border: 1px solid var(--bk-border) !important;
    color: var(--bk-muted) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    max-width: 230px !important;
}

html[data-theme="light"] .identity-page .upload-card {
    background: #f8fafc !important;
}

html[data-theme="dark"] .identity-page .upload-card {
    background: rgba(15, 23, 42, 0.56) !important;
}

html[data-theme="dark"] .identity-page .upload-file-name {
    background: rgba(15, 23, 42, 0.68) !important;
    color: #cbd5e1 !important;
}

/* ===================== PROFESSIONAL IDENTITY PAGE FIX ===================== */

html[data-theme="light"] .identity-page .form-label,
html[data-theme="light"] .identity-page label,
html[data-theme="light"] .identity-page .section-title,
html[data-theme="light"] .identity-page .field-title,
html[data-theme="light"] .identity-page .avatar-title {
    color: #1e293b !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .identity-page .section-note,
html[data-theme="light"] .identity-page .help-text,
html[data-theme="light"] .identity-page .field-help,
html[data-theme="light"] .identity-page .widget-label,
html[data-theme="light"] .identity-page .privacy-row-text span,
html[data-theme="light"] .identity-page .upload-hint,
html[data-theme="light"] .identity-page .hint-text,
html[data-theme="light"] .identity-page .upload-file-name {
    color: #475569 !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .identity-page .form-input,
html[data-theme="light"] .identity-page .form-select,
html[data-theme="light"] .identity-page input:not([type="file"]),
html[data-theme="light"] .identity-page select,
html[data-theme="light"] .identity-page textarea {
    color: #0f172a !important;
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    opacity: 1 !important;
}

html[data-theme="light"] .identity-page .required {
    color: #dc2626 !important;
    opacity: 1 !important;
}

.identity-page .upload-card {
    background: var(--bk-surface-2) !important;
    border: 1px solid var(--bk-border) !important;
    box-shadow: var(--bk-shadow-soft) !important;
}

.identity-page .upload-btn {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 12px !important;
    padding: 0 18px !important;
    background: var(--bk-primary) !important;
    border: 1px solid transparent !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 22px rgba(13, 148, 136, 0.18) !important;
}

.identity-page .upload-btn:hover {
    background: var(--bk-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.identity-page .upload-btn input[type="file"] {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    border: 0 !important;
    padding: 0 !important;
}

.identity-page .upload-file-name {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 12px !important;
    padding: 0 14px !important;
    background: var(--bk-surface) !important;
    border: 1px solid var(--bk-border) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    max-width: 230px !important;
}

html[data-theme="light"] .identity-page .upload-card {
    background: #f8fafc !important;
}

html[data-theme="dark"] .identity-page .upload-card {
    background: rgba(15, 23, 42, 0.56) !important;
}

html[data-theme="dark"] .identity-page .upload-file-name {
    background: rgba(15, 23, 42, 0.68) !important;
    color: #cbd5e1 !important;
}

/* =========================================================
   Bonyadkar Persian Font System - IRANYekan
   ========================================================= */

@font-face {
    font-family: 'BonyadkarYekan';
    src: url('/fonts/iranyekan/iranyekan-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BonyadkarYekan';
    src: url('/fonts/iranyekan/iranyekan-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BonyadkarYekan';
    src: url('/fonts/iranyekan/iranyekan-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BonyadkarYekan';
    src: url('/fonts/iranyekan/iranyekan-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BonyadkarYekan';
    src: url('/fonts/iranyekan/iranyekan-black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bk-font-main: 'BonyadkarYekan', 'Vazirmatn', 'IRANSans', Tahoma, Arial, sans-serif;
}

html,
body,
button,
input,
select,
textarea,
label,
a,
span,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
table,
td,
th {
    font-family: var(--bk-font-main) !important;
}

body {
    font-feature-settings: "kern";
    text-rendering: optimizeLegibility;
}

input,
select,
textarea,
button {
    font-family: var(--bk-font-main) !important;
    letter-spacing: 0 !important;
}

/* تیترها */
h1,
h2,
h3,
.page-title,
.section-title,
.jd-title,
.jd-section-title,
.sidebar .logo,
.sidebar-item span {
    font-family: var(--bk-font-main) !important;
    font-weight: 800 !important;
}

/* متن‌های توضیحی */
p,
small,
.help-text,
.section-desc,
.jd-subtitle,
.jd-section-desc,
.jd-stat-hint,
.jd-action-desc {
    font-family: var(--bk-font-main) !important;
    font-weight: 400 !important;
}

/* دکمه‌ها و badgeها */
button,
.btn,
.jd-btn,
.jd-badge,
.sidebar-item,
.submit-btn,
.add-btn {
    font-family: var(--bk-font-main) !important;
    font-weight: 700 !important;
}

/* اعداد داشبورد و درصدها */
.jd-progress-value,
.jd-stat-value,
.jd-action-value {
    font-family: var(--bk-font-main) !important;
    font-weight: 900 !important;
}


/* =========================================================
   Bonyadkar Jobseeker Global UI Fix - Light Professional Skin
   ========================================================= */

/*
|--------------------------------------------------------------------------
| هدف:
| یکدست‌سازی صفحات داخلی کارجو در حالت روشن
| بدون تغییر Blade / Controller / Route
|--------------------------------------------------------------------------
*/

html[data-theme="light"] body {
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, .055), transparent 36%),
        linear-gradient(180deg, #f8fcfb 0%, #f3faf8 100%) !important;
    color: #0f172a !important;
}

/* فضای اصلی پنل */
html[data-theme="light"] .main-content,
html[data-theme="light"] .content-wrapper,
html[data-theme="light"] .panel-content,
html[data-theme="light"] .page-content {
    background: transparent !important;
    color: #0f172a !important;
}

/* تیتر صفحات داخلی */
html[data-theme="light"] .page-title,
html[data-theme="light"] .page-header-title,
html[data-theme="light"] .section-title,
html[data-theme="light"] .form-title,
html[data-theme="light"] .card-title,
html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3 {
    color: #0f172a !important;
    text-shadow: none !important;
}

/* توضیحات */
html[data-theme="light"] .page-subtitle,
html[data-theme="light"] .section-desc,
html[data-theme="light"] .form-desc,
html[data-theme="light"] .card-desc,
html[data-theme="light"] .help-text,
html[data-theme="light"] .hint-text,
html[data-theme="light"] p,
html[data-theme="light"] small {
    color: #475569 !important;
    text-shadow: none !important;
}

/*
|--------------------------------------------------------------------------
| حذف کارت‌های تیره و تبدیل به کارت روشن حرفه‌ای
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .form-section,
html[data-theme="light"] .panel-card,
html[data-theme="light"] .content-card,
html[data-theme="light"] .dashboard-card,
html[data-theme="light"] .settings-card,
html[data-theme="light"] .request-card,
html[data-theme="light"] .application-card,
html[data-theme="light"] .job-card,
html[data-theme="light"] .smart-card,
html[data-theme="light"] .stat-card,
html[data-theme="light"] .empty-state,
html[data-theme="light"] .filter-bar,
html[data-theme="light"] .tabs-bar,
html[data-theme="light"] .list-card {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #dbe7e4 !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .055) !important;
}

/* کارت‌هایی که inline تیره شده‌اند */
html[data-theme="light"] [style*="background: #1"],
html[data-theme="light"] [style*="background:#1"],
html[data-theme="light"] [style*="background: rgb(15"],
html[data-theme="light"] [style*="background:rgb(15"],
html[data-theme="light"] [style*="background-color: #1"],
html[data-theme="light"] [style*="background-color:#1"] {
    background: #ffffff !important;
    color: #0f172a !important;
}

/* سکشن‌های بزرگ تیره */
html[data-theme="light"] .hero-card,
html[data-theme="light"] .hero-section,
html[data-theme="light"] .page-hero,
html[data-theme="light"] .top-hero {
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, .12), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #eefaf7 100%) !important;
    color: #0f172a !important;
    border: 1px solid #d6e7e3 !important;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .075) !important;
}

/*
|--------------------------------------------------------------------------
| آمارها / counters
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .stats-grid .stat-card,
html[data-theme="light"] .summary-card,
html[data-theme="light"] .counter-card,
html[data-theme="light"] .metric-card {
    background: #ffffff !important;
    border: 1px solid #dbe7e4 !important;
    color: #0f172a !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .055) !important;
}

html[data-theme="light"] .stat-value,
html[data-theme="light"] .counter-value,
html[data-theme="light"] .metric-value,
html[data-theme="light"] .summary-value {
    color: #0f172a !important;
    font-weight: 900 !important;
}

html[data-theme="light"] .stat-label,
html[data-theme="light"] .counter-label,
html[data-theme="light"] .metric-label,
html[data-theme="light"] .summary-label {
    color: #475569 !important;
}

/*
|--------------------------------------------------------------------------
| فرم‌ها و فیلدها
|--------------------------------------------------------------------------
*/

html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea,
html[data-theme="light"] .form-input,
html[data-theme="light"] .form-select,
html[data-theme="light"] .form-textarea {
    background-color: #ffffff !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

html[data-theme="light"] input:focus,
html[data-theme="light"] select:focus,
html[data-theme="light"] textarea:focus,
html[data-theme="light"] .form-input:focus,
html[data-theme="light"] .form-select:focus,
html[data-theme="light"] .form-textarea:focus {
    border-color: #0d9488 !important;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .12) !important;
    outline: none !important;
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}

/* خوانایی گزینه‌های select */
html[data-theme="light"] select option {
    background: #ffffff !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

html[data-theme="light"] select option:checked {
    background: #0f766e !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/*
|--------------------------------------------------------------------------
| checkbox / radio
|--------------------------------------------------------------------------
*/

html[data-theme="light"] input[type="checkbox"],
html[data-theme="light"] input[type="radio"] {
    accent-color: #0d9488 !important;
}

/*
|--------------------------------------------------------------------------
| دکمه‌ها
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .btn-primary,
html[data-theme="light"] .submit-btn,
html[data-theme="light"] .save-btn,
html[data-theme="light"] .jd-btn-primary,
html[data-theme="light"] button[type="submit"] {
    background: linear-gradient(135deg, #0d9488, #2563eb) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 12px 26px rgba(13, 148, 136, .18) !important;
}

html[data-theme="light"] .btn-secondary,
html[data-theme="light"] .add-btn,
html[data-theme="light"] .outline-btn,
html[data-theme="light"] .filter-btn,
html[data-theme="light"] .tab-btn {
    background: #ffffff !important;
    color: #0f766e !important;
    border: 1px solid rgba(13, 148, 136, .28) !important;
    box-shadow: none !important;
}

html[data-theme="light"] .btn-secondary:hover,
html[data-theme="light"] .add-btn:hover,
html[data-theme="light"] .outline-btn:hover,
html[data-theme="light"] .filter-btn:hover,
html[data-theme="light"] .tab-btn:hover {
    background: rgba(13, 148, 136, .08) !important;
    border-color: rgba(13, 148, 136, .45) !important;
    transform: translateY(-1px);
}

/*
|--------------------------------------------------------------------------
| tabs / filters
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .tabs-bar,
html[data-theme="light"] .filters-row,
html[data-theme="light"] .status-filter,
html[data-theme="light"] .filter-tabs {
    background: #ffffff !important;
    border: 1px solid #dbe7e4 !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .045) !important;
}

html[data-theme="light"] .tab-btn.active,
html[data-theme="light"] .filter-btn.active,
html[data-theme="light"] .status-filter .active {
    background: rgba(13, 148, 136, .10) !important;
    color: #0f766e !important;
    border-color: rgba(13, 148, 136, .35) !important;
}

/*
|--------------------------------------------------------------------------
| empty state
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .empty-state {
    background:
        radial-gradient(circle at top, rgba(13, 148, 136, .08), transparent 42%),
        #ffffff !important;
    border: 1px dashed rgba(13, 148, 136, .28) !important;
    color: #475569 !important;
}

html[data-theme="light"] .empty-state h3,
html[data-theme="light"] .empty-state-title {
    color: #0f172a !important;
}

html[data-theme="light"] .empty-state p,
html[data-theme="light"] .empty-state-text {
    color: #64748b !important;
}

/*
|--------------------------------------------------------------------------
| فرم مشاغل حرفه‌ای / ساده
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .professional-page,
html[data-theme="light"] .simple-page,
html[data-theme="light"] .identity-page {
    color: #0f172a !important;
}

html[data-theme="light"] .professional-page .form-section,
html[data-theme="light"] .simple-page .form-section,
html[data-theme="light"] .identity-page .form-section {
    background: #ffffff !important;
    border: 1px solid #dbe7e4 !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .055) !important;
}

html[data-theme="light"] .professional-page .section-desc,
html[data-theme="light"] .simple-page .section-desc,
html[data-theme="light"] .identity-page .section-desc {
    background: rgba(13, 148, 136, .055) !important;
    color: #475569 !important;
    border-right: 2px solid rgba(13, 148, 136, .26) !important;
}

/*
|--------------------------------------------------------------------------
| تنظیمات کارجو
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .settings-page .form-section,
html[data-theme="light"] .settings-page .settings-card,
html[data-theme="light"] .settings-page .panel-card {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #dbe7e4 !important;
}

html[data-theme="light"] .settings-page .setting-row,
html[data-theme="light"] .settings-page .privacy-row,
html[data-theme="light"] .settings-page .notification-row {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
}

/*
|--------------------------------------------------------------------------
| فایل‌ها / آپلودها
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .upload-card,
html[data-theme="light"] .upload-box,
html[data-theme="light"] .file-card,
html[data-theme="light"] .document-card {
    background: #ffffff !important;
    border: 1px dashed rgba(13, 148, 136, .30) !important;
    color: #0f172a !important;
}

html[data-theme="light"] .upload-card:hover,
html[data-theme="light"] .upload-box:hover,
html[data-theme="light"] .file-card:hover {
    background: rgba(13, 148, 136, .045) !important;
    border-color: rgba(13, 148, 136, .45) !important;
}

/*
|--------------------------------------------------------------------------
| حذف حس ایموجی/آیکون خام
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .section-icon,
html[data-theme="light"] .card-icon,
html[data-theme="light"] .stat-icon,
html[data-theme="light"] .page-icon,
html[data-theme="light"] .job-detail-icon {
    background: rgba(13, 148, 136, .10) !important;
    color: #0f766e !important;
    border: 1px solid rgba(13, 148, 136, .20) !important;
    box-shadow: none !important;
}

/*
|--------------------------------------------------------------------------
| submit bar پایین فرم‌ها
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .submit-section,
html[data-theme="light"] .floating-submit,
html[data-theme="light"] .save-bar {
    background: rgba(255, 255, 255, .94) !important;
    border: 1px solid #dbe7e4 !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08) !important;
    backdrop-filter: blur(12px);
    color: #475569 !important;
}

/*
|--------------------------------------------------------------------------
| کاهش تیرگی متن‌های قدیمی
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .text-muted,
html[data-theme="light"] .muted,
html[data-theme="light"] .soft-text,
html[data-theme="light"] .secondary-text {
    color: #64748b !important;
}

/*
|--------------------------------------------------------------------------
| hover عمومی کارت‌ها
|--------------------------------------------------------------------------
*/

html[data-theme="light"] .panel-card:hover,
html[data-theme="light"] .content-card:hover,
html[data-theme="light"] .dashboard-card:hover,
html[data-theme="light"] .request-card:hover,
html[data-theme="light"] .application-card:hover,
html[data-theme="light"] .job-card:hover {
    border-color: rgba(13, 148, 136, .35) !important;
    transform: translateY(-1px);
}

/*
|--------------------------------------------------------------------------
| ریسپانسیو
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
    html[data-theme="light"] .form-section,
    html[data-theme="light"] .panel-card,
    html[data-theme="light"] .content-card,
    html[data-theme="light"] .dashboard-card,
    html[data-theme="light"] .request-card,
    html[data-theme="light"] .application-card {
        border-radius: 16px !important;
    }
}

