body {
    background-color: #09090b;
    color: #e4e4e7;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #09090b;
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}

.card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 6px;
}

.flash {
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.flash-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #bbf7d0;
}
.flash-error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fecdd3;
}
