/* 
Balta Dashboard Color Palette
Primary: #00DBDB - Bright teal (main brand color)
Secondary: #37AEAE - Medium teal (supporting elements)
Tertiary: #647D7D - Dark teal-gray (text, footers)
Accent: #66FFFF - Light bright teal (highlights, accents)

This file can be imported into any component CSS files
*/

:root {
    --primary: #00DBDB;
    --secondary: #37AEAE;
    --tertiary: #647D7D;
    --accent: #66FFFF;
    
    /* Additional derived colors */
    --light-bg: #f9f9f9;
    --text-dark: #333;
    --text-light: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}
