@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom theme colors */
:root {
    --primary-bg: #EDF8F7;
    --secondary-color: #43B9B2;
}

body {
    background-color: var(--primary-bg);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #43B9B2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a9d96;
}
