body{
    margin: 0;
    padding: 0;
}

.page-banner{
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: #f6fff9;
    margin-top: 50px;
}

.page-banner img{
    width: 95%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 4px solid #0b3d2e;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.erpaccounts{
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    padding: 40px 15px;
}

/* WRAPPER (optional if you add one later) */
.erpaccounts .container{
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.erpaccounts .pricing-title{
    font-size: 34px;
    font-weight: 700;
    color: #0f5132;
    margin-bottom: 6px;
}

.erpaccounts .pricing-subtitle{
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 25px;
}

/* TABLE WRAPPER */
.erpaccounts .table-responsive{
    overflow-x: auto;
    border-radius: 12px;
}

/* TABLE */
.erpaccounts table{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

/* HEADER */
.erpaccounts thead th{
    background: linear-gradient(135deg, #0f5132, #157347);
    color: #fff;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

/* CELLS */
.erpaccounts td{
    padding: 14px;
    font-size: 14px;
    border: 1px solid #e9ecef;
    text-align: center;
    vertical-align: middle;
}

/* MODULE COLUMN */
.erpaccounts .module-title{
    background: #198754;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding-left: 14px;
}

/* ROW HOVER */
.erpaccounts tbody tr:hover{
    background: #f3fff7;
    transition: 0.2s ease;
}

/* STICKY HEADER */
.erpaccounts thead th{
    position: sticky;
    top: 0;
    z-index: 10;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .erpaccounts .pricing-title{
        font-size: 24px;
    }

    .erpaccounts table{
        min-width: 100%;
    }

    .erpaccounts td,
    .erpaccounts th{
        font-size: 13px;
        padding: 10px;
    }
}