.table-pagination ul.pagination {
    list-style: none;         /* Remove bullet points */
    padding-left: 0;
    display: flex;            /* Force horizontal alignment */
    gap: 6px;                 /* Optional: space between items */
    justify-content: right; /* Center the pagination */
    align-items: center;
}

.table-pagination li.page-item {
    display: inline-block;    /* Ensure horizontal layout */
}

.table-pagination .page-link {
    border-radius: 0.375rem;
    padding: 0.4rem 0.75rem;
    color: #0d6efd;
    border: 1px solid #dee2e6;
}

.table-pagination .page-item.active .page-link {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.form-control {
    height: calc(2.25rem + 2px);
}
.form-select {
    height: calc(2.25rem + 2px);
}
label {
    margin-top: 1rem !important; /* Ensure label spacing */
}

.sidebar-link, a.sidebar-link {
    background: none !important;
}

.sidebar, .sidebar.sidebar-affiliater .sidebar-content {
    background-color: #9e357d !important; /* Example background color for affiliates */
}

.sidebar-dropdown-item {
    padding-left: 10%;
}

.sidebar-item {
    &.active > .sidebar-link {
        background-color: #9e357d !important; /* Example active background color */
        color: #fff !important; /* Example active text color */
    }
}
.sidebar-nav {
  .sidebar-item {
    &.active > .sidebar-link {
      color: #fff;
      font-weight: 600;
    }

    .sidebar-collapse-icon {
      transition: transform 0.3s ease;
      i {
        transition: transform 0.3s ease;
      }
    }

    &.active > .sidebar-link .sidebar-collapse-icon i {
      transform: rotate(180deg);
    }

    .collapse {
      .sidebar-dropdown {
        .sidebar-dropdown-item {

          &.active > .sidebar-link {
            background-color: #f1f1f1;
            color: #f5f7f9;
            font-weight: 600;
          }
        }
      }
    }
  }
}

@media (max-width: 576px) {
    [aria-label="Order Status Tabs"] a.btn {
        flex: 1 1 45%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .card-header .card-title {
        font-size: 1.1rem;
    }

    .table-sm td {
        padding: 0.5rem 0.3rem;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .select2-container--default .select2-selection--single {
        height: 38px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 38px;
        font-size: 0.9rem;
    }
    }

    @media (max-width: 768px) {
    .product-row {
        background-color: #f8f9fa;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 15px !important;
    }
}
.cke_notification.cke_notification_warning {
    display: none;
}