/* =====================================================
   OKSY3 HR MODULE
===================================================== */

.hr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.hr-title {
    font-family: Kanit, Sarabun, sans-serif;
    font-weight: 800;
    font-size: 24px;
}

/* employee card */

.employee-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.employee-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7a5cff, #ff7ac7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* HR status */

.hr-status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
}

.hr-status.active {
    background: #dcfce7;
    color: #166534;
}

.hr-status.inactive {
    background: #fee2e2;
    color: #991b1b;
}

/* HR table */

.hr-table {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .08);
}

.hr-table thead {
    background: #f9fafb;
}