/* =====================
   Employee Styles
   ===================== */

.employee-details-view {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2d3748;
}

.details-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.details-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.details-col label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.details-col p {
    font-size: 1rem;
    color: #e5e7eb;
    margin: 0;
    word-break: break-all;
}

/* Responsive Table Adjustments */
@media (max-width: 1024px) {
    .table-container {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .details-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
