/* ============================================
   TABLE STYLES
   ============================================ */

/* Card styling */
.card.shadow-sm {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15) !important;
    border: none;
    border-radius: 0.5rem;
}

/* Table header styling */
.table thead th {
    background-color: #B8CCE4 !important;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: background-color 0.15s ease-in-out;
}

.table tbody tr:hover {
    background-color: #f8f9fa !important;
}

.table td {
    border-color: #dee2e6;
    vertical-align: middle;
}

/* Button group in tables */
.btn-group .btn {
    margin-right: 0.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
    white-space: nowrap;
    min-width: fit-content;
}

.btn-group .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

/* Table responsive */
.table-responsive {
    -webkit-overflow-scrolling: touch;
}

/* Action column */
.table td:last-child {
    white-space: nowrap;
}

/* Info column with ellipsis */
.table td[style*="text-overflow"] {
    cursor: help;
}

/* Employee status styles */
.normal {
    background: #f8f9fa !important;
}

.out {
    background: #ffebee !important;
    color: #c62828;
    font-weight: 500;
}

/* Button colors */
.btn-primary {
    background-color: #4285f4;
    border-color: #4285f4;
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}
