.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;
          }
        }
      }
    }
  }
}
