/* Custom styles for RTS Django Tailwind Template System */
/* Using Tailwind CSS via CDN for development - in production, use build process */

/* Custom color variables matching the project requirements */
:root {
    --primary-color: #13335b;
    --accent-color: #eeae4a;
    --base-color: #ffffff;
}

/* Custom component styles */
.sidebar-active {
    background-color: var(--accent-color) !important;
    color: white !important;
}

/* Drawer animation styles */
.drawer-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.drawer {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.drawer.open {
    transform: translateX(0);
}

/* Mobile responsive sidebar */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
}

/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #d49a3e;
}