body {
  font-family: "Nunito", sans-serif;
  background-color: #f8f9fa;
}

input, select, button {
  cursor: pointer;
}

.cred_btn {
  background-color: #fff;
  border: 1px solid #6c757d;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.5em 0.7rem;
  color: #6c757d;
  text-decoration: none;
}
.cred_btn:hover {
  background-color: #6c757d;
  color: #fff;
  transition: 0.2s;
}

.cred_box {
  margin: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: #2d3748 !important;
}

.main-content {
  display: block;
  padding: 1rem 0 2rem 0;
}

.card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 600;
  padding: 1rem 1rem 0.5rem 1rem;
}
.card-header:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #e7f1ff;
}

.modal-content {
  position: relative;
  z-index: 1; /* Lower than toast */
}

.form-label-format {
  margin-top: 5px !important;
  margin-bottom: 2px !important;
  display: flex;
}

.table > :not(:first-child) {
  border-top: none;
}

.pagination-wrapper {
  margin-top: 0;
  margin-left: auto; /* This will push the pagination to the right */
}

.pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.page-link:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.page-item.active .page-link {
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: white;
}

.page-item.disabled .page-link {
  color: #9ca3af;
  pointer-events: none;
  background-color: #f9fafb;
  border-color: #e5e7eb;
}

.table-light th {
  background-color: #e7f1ff;
}
.table-light th:first-child {
  border-radius: 5px 0 0 0;
}
.table-light th:last-child {
  border-radius: 0 5px 0 0;
}

.card-footer:last-child {
  border-radius: 0 0 5px 5px;
}

/* Responsive styles */
@media (max-width: 640px) {
  .pagination {
    flex-wrap: wrap;
  }
  .page-link {
    min-width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
}
.navbar {
  z-index: 2;
}

.sub_navbar {
  padding: 10px 0;
}
.sub_navbar ul {
  display: flex;
  justify-content: right;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin: 0;
}
.sub_navbar ul li {
  list-style: none;
  text-align: center;
  position: relative;
}
.sub_navbar ul li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #2d3748;
  display: inline-block;
  z-index: 1;
}
.sub_navbar ul li:last-child::after {
  display: none;
}
.sub_navbar ul li .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3rem;
  padding-bottom: 5px;
  background-color: #e7f1ff;
  transform: scaleX(1);
  transform-origin: left center;
}
.sub_navbar ul li a {
  text-decoration: none;
  color: #2d3748;
  position: relative;
  display: block;
  z-index: 1;
  width: 200px;
}
.sub_navbar ul li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3rem;
  padding-bottom: 5px;
  background-color: #c8ddfb;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
.sub_navbar ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}/*# sourceMappingURL=agent-page.css.map */