
/* Table adjustments for Philippine DTR format */
table {
    min-width: 100%;
    white-space: nowrap;
    font-size: 0.875rem;
}

th, td {
    padding: 0.5rem 0.75rem;
    text-align: center;
}

th:first-child, td:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    background: white;
    z-index: 10;
}
th, td {
    padding: 0.75rem 1rem;
    text-align: left;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
/* Animation for employee cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.employee-card {
    animation: fadeIn 0.3s ease-out forwards;
    opacity: 0;
}

/* Delay animations for each card */
.employee-card:nth-child(1) { animation-delay: 0.1s; }
.employee-card:nth-child(2) { animation-delay: 0.2s; }
.employee-card:nth-child(3) { animation-delay: 0.3s; }
.employee-card:nth-child(4) { animation-delay: 0.4s; }
.employee-card:nth-child(5) { animation-delay: 0.5s; }

/* Selected employee style */
.employee-card.selected {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

/* Chip styles for selected employees */
.bg-blue-100 {
    transition: all 0.2s ease;
}

.bg-blue-100:hover {
    background-color: #dbeafe !important;
}

/* Button hover effects */
button.bg-blue-500:hover {
    background-color: #2563eb !important;
}

button.border-gray-300:hover {
    background-color: #f9fafb !important;
}
