body {
    background-color: #FFF5F7;
    background-image:
        radial-gradient(at 0% 0%, hsla(340, 100%, 88%, 0.8) 0px, transparent 55%),
        radial-gradient(at 100% 100%, hsla(260, 100%, 92%, 0.7) 0px, transparent 55%);
    background-attachment: fixed;
    background-size: 100% 100%;
}

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

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

.active-tab {
    background-color: #FFB6C8;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.inactive-tab {
    background-color: white;
    color: #6B7280;
}

.inactive-tab:hover {
    background-color: #FFF0F5;
    color: #DB2777;
}

.shift-type-M {
    border-left: 4px solid #FFB6C8;
    background-color: #FFF0F5;
}

.shift-type-G {
    border-left: 4px solid #98D098;
    background-color: #F0FFF4;
}

.shift-type-L {
    border-left: 4px solid #B8D4E3;
    background-color: #F0F9FF;
}

/* --- 1. CSS HOTFIX REQUESTED --- */
/* Table Headers */
#salary-table thead th {
    color: #1C1917 !important;
    font-weight: 800 !important;
    background-color: #F5F5F4 !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    /* text-xs */
    letter-spacing: 0.05em;
    /* tracking-wider */
}

/* Badges */
.badge-solid-pink {
    background-color: #DB2777 !important;
    color: white !important;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    box-shadow: 0 2px 4px rgba(219, 39, 119, 0.2);
}

