#main.site-main,
#content.site-main {
    width: 100% !important; /* Set main container to full width */
    max-width: 100% !important; /* Remove any max-width constraints */
    padding: 0 !important; /* Remove padding that could cause space */
    margin: 0 !important; /* Remove margin to ensure no extra space */
    overflow-x: hidden; /* Prevent horizontal scrollbars */
}

.qb-full-width-widget {
    width: 100% !important; /* Ensure widgets take full width */
    max-width: 100% !important; /* Override any internal max-width */
    padding: 0 !important; /* Remove widget padding */
    margin: 0 !important; /* Remove widget margin */
}

#main.site-main .elementor-section,
#content.site-main .elementor-section {
    width: 100% !important; /* Ensure widgets take full width */
    max-width: 100% !important; /* Override any internal max-width */
    padding: 0 !important; /* Remove widget padding */
    margin: 0 !important; /* Remove widget margin */
}


.qb-full-width {
    width: 100% !important; /* Ensure section spans the full width */
    max-width: 100% !important; /* Remove any section width limits */
    padding: 0 !important; /* Remove padding from the section */
    margin: 0 !important; /* Remove margin to eliminate space */
    overflow: hidden; /* Prevent overflow issues */
    box-sizing: border-box; /* Include padding in the width calculation */
}
.qb-full-width .e-con-inner {
    width: 100% !important; /* Ensure section spans the full width */
    max-width: 100% !important; /* Remove any section width limits */
    padding: 0 !important; /* Remove padding from the section */
    margin: 0 !important; /* Remove margin to eliminate space */
}
.text-truncate-2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-theme-primary, .badge-theme-primary {
    color: var(--theme-primary-text) !important;
    background-color: var(--theme-primary) !important;
    border-color: color-mix(in srgb, var(--theme-primary), black 10%) !important;
}
.btn-theme-primary:hover {
    color: var(--theme-primary-text) !important;
    background-color: var(--theme-primary) !important;
    border-color: color-mix(in srgb, var(--theme-primary), black 10%) !important;
}
.btn-theme-secondary, .badge-theme-secondary {
    color: var(--theme-secondary-text) !important;
    background-color: var(--theme-secondary) !important;
    border-color: color-mix(in srgb, var(--theme-secondary), black 10%) !important;
}
.btn-theme-secondary:hover {
    color: var(--theme-secondary-text) !important;
    background-color: var(--theme-secondary) !important;
    border-color: color-mix(in srgb, var(--theme-secondary), black 10%) !important;
}
.heading-theme-primary, .heading-theme-primary > a {
    margin-top: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 2px;
}
.heading-theme-primary span, .heading-theme-primary > a span {
    color: var(--theme-primary);
}
.form-row {
    margin-bottom: .8rem;
}
.qb-field-lg .qb-field-input input,
.qb-field-lg .qb-field-input select,
.qb-field-input .typeahead,
.qb-field-input .select2-container .select2-selection--single {
    font-size: 0.875rem !important;
    width: 100%!important;
    border-radius: 0!important;
    line-height: 1.5 !important;
}
.qb-field-input input[type=text], 
.qb-field-input input[type=tel], 
.qb-field-input input[type=password], 
.qb-field-input input[type=email], 
.qb-field-input textarea, 
.qb-field-input select, 
.qb-field-input .typeahead,
.qb-field-input .select2-container .select2-selection--single,
.qb-field-input .selectize-input {
    background: #fbfdff !important;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 50px;
    outline: none;
    padding: 10px 20px;
    border: 1px solid #dde6ef;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
  }

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  /* General Styling for My Account Links */
  .woocommerce-MyAccount-navigation li {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: var(--theme-tertiary);
    color: var(--theme-tertiary-text);
}

/* Hover State */
.woocommerce-MyAccount-navigation li:hover {
    background-color: var(--theme-secondary);
    color: var(--theme-secondary-text);
}

/* Active Link Styling */
.woocommerce-MyAccount-navigation li.is-active {
    background-color: var(--theme-secondary);
    color: var(--theme-secondary-text);
    font-weight: 600;
}

/* Specific Styling for Orders Link */
.woocommerce-MyAccount-navigation-link--orders {
    border-left: 4px solid var(--theme-secondary);
}

/* Optional: Adding Icons to Each Link (Replace with FontAwesome or Other Icons) */
.woocommerce-MyAccount-navigation li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    line-height: 1em;
    content: "\f054";
    margin-right: 10px;
    color: var(--theme-secondary);
}

/* On Hover - Icon Color */
.woocommerce-MyAccount-navigation li:hover::before,
.woocommerce-MyAccount-navigation li.is-active::before {
    color: var(--theme-secondary-text);
}
.woocommerce-MyAccount-navigation li a {
    text-decoration: none;
    color: var(--link-color);
}
.woocommerce-MyAccount-navigation li:hover::before {
    color: var(--theme-secondary-text);
}
.woocommerce-MyAccount-navigation li:hover a,
.woocommerce-MyAccount-navigation li.is-active a {
    text-decoration: none;
    color: var(--theme-secondary-text);
}
/* Container Styling for WooCommerce Address Columns */
.u-columns.woocommerce-Addresses.col2-set.addresses {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Individual Address Block Styling */
.woocommerce-Addresses .u-column1,
.woocommerce-Addresses .u-column2 {
    flex: 1;
    background-color: #fdfdfd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-Addresses .u-column1:hover,
.woocommerce-Addresses .u-column2:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Address Heading Styling */
.woocommerce-Addresses h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #0071a1;
    padding-bottom: 8px;
}

/* Address Content Styling */
.woocommerce-Addresses address {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

/* Edit Button Styling */
.woocommerce-Addresses .edit {
    display: inline-block;
    font-size: 14px;
    color: #0071a1;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.woocommerce-Addresses .edit:hover {
    color: #005080;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .u-columns.woocommerce-Addresses.col2-set.addresses {
        flex-direction: column;
    }
}
/* Container Styling for WooCommerce Orders Table */
.woocommerce-orders-table {
    width: 100%;
    background-color: #fdfdfd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Header Styling */
.woocommerce-orders-table thead {
    background-color: var(--theme-primary);
    color: var(--theme-primary-text);
}

.woocommerce-orders-table th {
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

/* Row Styling */
.woocommerce-orders-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.woocommerce-orders-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Cell Styling */
.woocommerce-orders-table td {
    padding: 15px;
    font-size: 15px;
    color: #555;
    text-align: left;
}

/* Order Actions Button Styling */
.woocommerce-orders-table .button {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-primary);
    background-color: #f1f9ff;
    border: 1px solid var(--theme-primary);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.woocommerce-orders-table .button:hover {
    background-color: var(--theme-primary);
    color: var(--theme-primary-text);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .woocommerce-orders-table th, .woocommerce-orders-table td {
        font-size: 14px;
        padding: 10px;
    }

    .woocommerce-orders-table {
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Search Form */
.filter-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    right: 5px;
}

/* Make the Select2 container look like a Bootstrap 5 form control */
.filter-form .select2-container .select2-selection--single {
    height: calc(2.5rem + 2px); /* Match the height of Bootstrap form-control */
    padding: 0.375rem 0.75rem;   /* Bootstrap padding */
    border: 1px solid #ced4da;   /* Bootstrap border color */
    border-radius: 0.375rem;     /* Bootstrap border radius */
}

.filter-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: calc(2.5rem - 0.375rem); /* Center text vertically */
    color: #495057; /* Bootstrap text color */
}

.filter-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(2.5rem + 2px); /* Center dropdown arrow */
}

.filter-form .select2-dropdown {
    border-radius: 0.375rem; /* Match Bootstrap’s border radius */
}
.filter-form .select2-container {
	position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.btn-xs {
    padding: 1px 5px !important;
    line-height: 1.5 !important;
    border-radius: 3px !important;
    font-size: .8rem !important;
}


/* nav-item, nav-link classes */
.navbar-qb li {
    margin-right: 15px;
    position: relative;
}

.navbar-qb li:last-child {
    margin-right: 0;
}

.navbar-qb li a {
    padding: 10px 15px;
    font-size: 16px;
}

.navbar-qb li:hover,
.navbar-qb li.active {
    border-radius: 5px;
}

@media (max-width: 991px) {
    .navbar-qb li {
        margin-right: 10px;
    }
}

@media (max-width: 575px) {
    .navbar-qb li {
        margin-right: 5px;
    }

    .navbar-qb li a {
        font-size: 14px;
    }
}
.navbar-qb li a {
    padding: 10px 15px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-qb li a:hover,
.navbar-qb li a.active {
    border-radius: 5px;
}

.navbar-qb li a:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.navbar-qb li.dropdown a {
    padding-right: 30px;
}

.navbar-qb li.dropdown:hover a {
    color: #0056b3;
}

@media (max-width: 991.98px) {
    .navbar-collapse a {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .navbar-qb li a {
        padding: 6px 12px;
        font-size: 14px;
    }
}
.mhi-100 {
    min-height: 100vh !important;
}
.qb-brand {
    max-width: 250px;
    height: auto;
}

.pagination .page-link {
    color: var(--theme-secondary);
    background-color: var(--theme-secondary-text);
}

.pagination .page-item.active .page-link {
    color: var(--theme-secondary-text);
    background-color: var(--theme-secondary);
    border-color: var(--theme-secondary);
}

.pagination .page-link:hover {
    color: var(--theme-secondary-text);
    background-color: var(--theme-secondary);
}