/* =========================================================
   BLOOMSERVE — MY PAYSLIPS
========================================================= */

.bs-payslips-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 30px 60px;
}

.bs-payslips-title {
    margin-bottom: 28px;
}

.bs-payslips-title h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #18243d;
}

.bs-payslips-title p {
    margin: 8px 0 0;
    color: #7b8ba5;
    font-size: 16px;
}


/* =========================================================
   PAYSLIP CARD
========================================================= */

.bs-payslips-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 8px;
    box-shadow: 0 10px 35px rgba(24, 36, 61, 0.07);
    border: 1px solid #e8eef5;
}


/* =========================================================
   TABLE
========================================================= */

.bs-payslips-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.bs-payslips-table th {
    background: #f5f9fc;
    color: #7890aa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 18px 22px;
    text-align: left;
}

.bs-payslips-table th:first-child {
    border-radius: 15px 0 0 15px;
}

.bs-payslips-table th:last-child {
    border-radius: 0 15px 15px 0;
}

.bs-payslips-table td {
    padding: 22px;
    border-bottom: 1px solid #edf1f5;
    color: #18243d;
    font-size: 16px;
}

.bs-payslips-table tr:last-child td {
    border-bottom: none;
}


/* =========================================================
   MONTH
========================================================= */

.bs-payslip-month {
    font-weight: 700;
    font-size: 17px;
    color: #18243d;
}

.bs-payslip-month::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #0b86d5;
    border-radius: 50%;
    margin-right: 10px;
}


/* =========================================================
   VIEW BUTTON
========================================================= */

.bs-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 20px;

    background: #0b86d5;
    color: #ffffff !important;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    transition: all 0.2s ease;
}

.bs-view-btn:hover {
    background: #086fae;
    transform: translateY(-1px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.bs-payslips-empty {
    text-align: center;
    padding: 55px 25px;
    color: #7b8ba5;
}

.bs-payslips-empty h3 {
    margin: 0 0 8px;
    color: #18243d;
    font-size: 20px;
}

.bs-payslips-empty p {
    margin: 0;
    font-size: 15px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .bs-payslips-page {
        padding: 25px 15px 40px;
    }

    .bs-payslips-title h1 {
        font-size: 32px;
    }

    .bs-payslips-card {
        padding: 5px;
        border-radius: 16px;
    }

    .bs-payslips-table th,
    .bs-payslips-table td {
        padding: 15px 12px;
    }

    .bs-view-btn {
        padding: 9px 13px;
        font-size: 13px;
    }

}