/* Custom styles for Emp Direct Admin Interface */

/* Toggle button styles */
.toggle-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    background-color: #e5e7eb;
    color: #374151;
    border: none;
    cursor: pointer;
}

.toggle-btn:hover {
    background-color: #d1d5db;
}

.toggle-btn.active {
    background-color: #3B82F6;
    color: white;
}

.toggle-btn.active:hover {
    background-color: #2563eb;
}

/* Table styles */
table {
    border-collapse: collapse;
    width: 100%;
}

thead th {
    background-color: #374151;
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

tbody tr:hover {
    background-color: #f9fafb;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Loading indicator for HTMX requests */
.htmx-request {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth transitions */
* {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
