/* General table styling */
.table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background-color: #04505E;
    color: #fff;
    font-weight: bold;
}

.table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Invoice List and Detail Table Styling */
#account-invoices .table,
#account-invoice-detail .table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

#account-invoices .table th,
#account-invoice-detail .table th,
#account-invoices .table td,
#account-invoice-detail .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#account-invoices .table th,
#account-invoice-detail .table th {
    background-color: #04505E;
    color: #fff;
    font-weight: bold;
}

#account-invoices .table tbody tr:hover,
#account-invoice-detail .table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Buttons */
#account-invoices .btn,
#account-invoice-detail .btn {
    border-radius: 5px;
    background-color: #04505E;
    color: #fff;
    border: none;
    padding: 12px;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

#account-invoices .btn:hover,
#account-invoice-detail .btn:hover {
    background-color: #033d4a;
    color: #fff;
}

/* Pagination styling */
.pagination-results {
    margin-top: 20px;
}

.pagination-results .text-left, .pagination-results .text-right {
    font-size: 14px;
    color: #04505E;
}

/* Pagination Styling */
#account-invoices .pagination-results .text-left,
#account-invoices .pagination-results .text-right {
    font-size: 14px;
    color: #04505E;
}


.route-common-home .grid-col-top-3-1 {
    margin-left: -10px;
    margin-right: -10px;
}

.module-master_slider .ms-scroll-parallax-cont, .module-master_slider .ms-slide .ms-slide-layers, .module-master_slider .ms-overlay-layers .ms-slide-layers {
    left: 50% !important;
    max-width: 1280px !important;
    transform: translate(-50%);
}