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);
}

/* ===================== ERP PRICE ===================== */

.erpprice{
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    padding: 40px 0;
}

/* WRAPPER */
.erpprice .pricing-wrapper{
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    overflow-x: auto; /* IMPORTANT FIX */
    max-width: 1400px;
    margin: auto;
}

/* TITLE */
.erpprice .pricing-title{
    font-size: 38px;
    font-weight: 700;
    color: #0f5132;
    margin-bottom: 6px;
}

.erpprice .pricing-subtitle{
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* TABLE */
.erpprice table{
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
    background: #fff;
}

/* HEADER */
.erpprice thead th{
    background: linear-gradient(135deg, #0f5132, #157347);
    color: #fff;
    padding: 16px 12px;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;

    position: sticky;
    top: 0;
    z-index: 20;
}

/* BODY */
.erpprice tbody td{
    padding: 12px 10px;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #e9ecef;
    white-space: nowrap;
}

/* MODULE LABEL */
.erpprice .module-title{
    background: #198754;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding-left: 14px;
}

/* PRICE ROW */
.erpprice .price-row{
    background: #e8fff0;
    font-weight: 700;
    color: #0f5132;
}

/* CHECK MARK FIX (centered properly) */
.erpprice .available{
    position: relative;
}

.erpprice .available::after{
    content: "✓";
    color: #198754;
    font-size: 18px;
    font-weight: 800;

    position: relative;
    top: 1px;
}

/* ROW HOVER (smooth) */
.erpprice tbody tr{
    transition: background 0.2s ease;
}

.erpprice tbody tr:hover{
    background: #f3fff7;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .erpprice .pricing-wrapper{
        padding: 20px;
    }

    .erpprice .pricing-title{
        font-size: 28px;
    }

    .erpprice table{
        min-width: 900px;
    }
}

@media (max-width: 576px){
    .erpprice .pricing-title{
        font-size: 22px;
    }

    .erpprice .pricing-subtitle{
        font-size: 14px;
    }

    .erpprice table{
        min-width: 800px;
    }
}