:root {
    --primary: #ED1C24;
    --secondary: #A6A6A6;
    --accent: #1A1A1A;
    --bg: #F8F9FA;
}

body {
    background-color: var(--bg);
    font-family: 'Inter', sans-serif;
}

.active-nav {
    background-color: var(--primary) !important;
    color: white !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-btn {
    transition: all 0.2s ease;
}

.label-form {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.input-form {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background-color: #F9FAFB;
}

.input-form:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(237, 28, 36, 0.1);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

table th {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

canvas {
    max-height: 300px !important;
}