/* Custom styles for the Workforce Management System */

/* Override Tailwind dark mode classes */
.bg-dark {
    background-color: #1a1a1a;
}

.bg-dark-nav {
    background-color: #2d2d2d;
}

.bg-dark-card {
    background-color: #333333;
}

.ticket-item:hover {
    background-color: #2c3e50;
    transition: background-color 0.3s ease;
}

.active-ticket {
    border-left: 4px solid #3182ce;
}

/* Priority badges */
.badge-emergency {
    background-color: #e53e3e;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.badge-urgent {
    background-color: #dd6b20;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.badge-normal {
    background-color: #4299e1;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Make scrollbars more visible in dark mode */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #2d2d2d;
}

::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #718096;
} 