:root {
    --primary: #19e65e;
    --primary-dark: #15c24e;
    --primary-soft: #e7f3eb;
    --background-light: #f6f8f6;
    --background-dark: #112116;
    --surface-light: #ffffff;
    --surface-dark: #1a2e22;
    --text-main: #0e1b12;
    --text-muted: #4e9767;
}

body {
    font-family: 'Inter', sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.btn-smooth {
    transition: all 0.4s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #374151;
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Base styles for forms and transitions */
input:not([type="radio"]):not([type="checkbox"]),
textarea,
select {
    border-color: #e5e7eb;
    background-color: rgba(249, 250, 251, 0.5);
}

.dark input:not([type="radio"]):not([type="checkbox"]),
.dark textarea,
.dark select {
    border-color: #374151;
    background-color: rgba(17, 33, 22, 0.5);
    color: white;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}