/* Dynamic Color Configuration from config.php */
:root {
    /* Primary Colors */
    --primary-color: #1d4ed8;
    --primary-dark: #1e40af;
    --secondary-color: #93c5fd;
    --accent-color: #FFFFFF;

    /* Feature Colors */
    --wine-red: #1e40af;
    --candy-red: #dbeafe;
    --sky-blue: #bfdbfe;
    --pinky-candy: #eff6ff;

    /* Text Colors */
    --text-primary: #1e3a8a;
    --text-secondary: #1e40af;
    --text-light: #6B7280;

    /* Background Colors */
    --background: #FFFFFF;
    --background-light: #eff6ff;
    --background-gray: #dbeafe;
    --border-color: #bfdbfe;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);

    /* Other Design Tokens */
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}
