:root,
.light-mode {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --hover-bg: #f1f5f9;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    --input-bg: #ffffff;
    --input-border: #cbd5e1;
    --header-bg: #ffffff;
    --footer-bg: #1f2937;
    --footer-text: #9ca3af;
    --insta-gradient: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    --edit-color: #2C7DA0;
    --delete-bg: #fee2e2;
    --delete-color: #dc2626;
    --save-color: #10b981;
    --primary-color: #2563eb;
}

/* تم تاریک */
.dark-mode {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --hover-bg: #334155;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    --input-bg: #0f172a;
    --input-border: #475569;
    --header-bg: #0f172a;
    --footer-bg: #0f172a;
    --footer-text: #94a3b8;
}

/* بقیه استایل‌های عمومی */
body {
    font-family: 'Tahoma', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
    transition: background-color 0.2s, color 0.2s;
        font-size: 100%;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* استایل‌های عمومی مودال, اسکرول و ... (بقیه استایل‌ها از فایل‌های دیگر آورده می‌شوند) */