:root {
    /* Main Colors */
    --primary-color: #0D9488;
    --primary-hover: #0B7A6E;
    --primary-soft: #F0FDFA;

    /* Backgrounds */
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --bg-gray: #F3F4F6;

    /* Borders & Dividers */
    --border-color: #E5E7EB;

    /* Text Colors */
    --text-dark: #111827;
    --text-muted: #6B7280;
    --text-gray: #374151;

    /* Status Colors */
    --color-success: #059669;
    --bg-success: #D1FAE5;
    --color-warning: #D97706;
    --bg-warning: #FEF3C7;
    --color-error: #DC2626;
    --bg-error: #FEE2E2;
    --color-info: #2563EB;
    --bg-info: #EFF6FF;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-gray);
}
