/* CSS Değişkenleri - Tema renkleri için */
:root {
    --primary-color: rgba(76, 175, 80, 0.8); /* Varsayılan yeşil tema */
    --primary-dark: rgba(56, 142, 60, 0.9);
    --primary-light: rgba(76, 175, 80, 0.4);
    --text-color: rgba(33, 33, 33, 0.9);
    --text-light: rgba(97, 97, 97, 0.8);
    --background: rgba(248, 249, 250, 1);
    --white: rgba(255, 255, 255, 1);
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Tema Geçiş Efekti */
body.theme-transition * {
    transition: all 0.5s ease !important;
}
