@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

.page-title {
  font-size: 24px !important;
  font-weight: bold !important;
  margin-block: auto;
}

:root {
  --primary-color: #63D8FB;
}

.theme-blue {
  color: var(--primary-color);
}

i.fa-user {
  color: var(--primary-color);
}

i.fa-clock {
  color: #9E8FFF;
}

body {
  background-color: #F5F6FA;
}

body .content.auth {
  background-image: linear-gradient(#63D7FA, #0A0A0A);
  height: 100vh;
  margin: 0px;
}

.dropdown-divider {
  border-color: rgba(150, 150, 150, 0.1);
}

.dropdown i.fa-ellipsis::after {
  display: none !important;
}

.filter select,
.filter select:focus-visible,
.filter input[type="date"] {
  border: 0px !important;
  outline: none;
  background-color: transparent;
}

.dropdown-item:hover {
  background-color: transparent;
}

ul li span {
  padding: 6px 20px 12px 20px;
  display: block;
}

ul li span:last-child {
  /* padding: 14px 20px 14px 20px; */
  text-align: center;
}

a,
a:hover {
  color: #63d8fb;
}

.full-width {
  width: 300px;
}

.full-width .dropdown-divider {
  margin: 0px;
}

.full-width li a.dropdown-item div.d-flex div {
  margin-block: auto;
}

.full-width li a.dropdown-item div.d-flex div p,
.full-width li a.dropdown-item div.d-flex div h6 {
  margin: 0px;
}

.full-width li a.dropdown-item div.d-flex div p {
  color: #A8A8A8;
}

table .dropdown .dropdown-item {
  font-size: 15px;
  padding-block: 6px;
}

table .dropdown-item.active,
.dropdown-item:active {
  color: #000;
}

span.dt-column-title {
  text-align: center;
}

.full-width i {
  font-size: 14px;
  padding: 10px;
  color: #fff;
  border-radius: 50%;
}

.full-width li:nth-child(3) i {
  background: linear-gradient(#4E96FF, #80C9FC);
}

.full-width li:nth-child(4) i {
  background: linear-gradient(#F97FD9, #FFC1E6);
}

.full-width li:nth-child(5) i {
  background: linear-gradient(#9E8FFF, #EBCBFF);
}

.full-width li:nth-child(6) i {
  background: linear-gradient(#FF8F8F, #FFC1C1);
}

.full-width li:nth-child(7) i {
  background: linear-gradient(#ff8fd4, #ffc1e3);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.submenu.show {
  max-height: 500px;
  /* Set to a height that fits your content */
}

.toggle-submenu i.ms-auto {
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(90deg);
  /* Optional if using fa-chevron-right/down */
}

.sidebar {
  width: 300px;
  background-color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  padding-top: 10px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
  overflow: auto;
}

.sidebar.hide {
  transform: translateX(-100%);
}

.sidebar>a>i {
  position: absolute;
  right: 20px;
  color: #202224;
}

.sidebar .nav-link {
  color: #202224;
  padding: 10px 20px;
  border-radius: 7px;
  margin: 5px 10px 5px 25px;
  font-size: 14px;
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.3s;
}

.sidebar .nav-link.active {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
}

.sidebar .nav-link.active::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 40px;
  background-color: #63D8FB;
  border-radius: 5px;
}

.sidebar .submenu .nav-link.active {
  background-color: #fff;
  color: var(--primary-color);
  font-weight: 700;
}

.sidebar .submenu .nav-link.active::before {
  content: none;
}

.sidebar .submenu {
  padding-left: 30px;
  display: none;
}

.sidebar .submenu li a {
  font-size: 13px;
}

.sidebar .submenu.show {
  display: block;
}

.sidebar-toggler-desktop {
  top: 10px;
  right: -40px;
  z-index: 1050;
  border: none;
  color: #202224;
  background-color: transparent;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 22px;
}

#sidebarClose {
  display: none;
}

.nav-link i {
  width: 20px;
}

.topbar {
  background-color: #ffffff;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1030;
  margin-left: 300px;
  transition: margin-left 0.3s ease-in-out;
}

.topbar .dropdown {

  h6 {
    color: #202224;
    font-size: 14px;
    font-weight: bold;
  }

  p {
    color: #202224;
    font-size: 12px;
  }

  i.domify {
    color: #202224;
    border: 1px solid #333;
    padding: 5px;
    font-size: 10px;
    border-radius: 50%;
  }
}

.profile-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.content {
  margin-left: 300px;
  padding: 30px;
  transition: margin-left 0.3s ease-in-out;

}

@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .topbar,
  .content {
    margin-left: 0;
  }

}

@media (min-width: 768px) {
  .pt-sm-4 {
    padding-top: 0rem !important;
  }

  .flex-sm-column {
    flex-direction: row !important;
  }
}

@media (max-width: 767px) {
  .content{
    padding: 10px !important;
  }

  .pending-approval .btn {
    width: 100% !important;
  }

  .flex-sm-column {
    flex-direction: column;
  }

  .pt-sm-4 {
    padding-top: 1.5rem;
  }

  #sidebarClose {
    display: block;
  }

  .col-sm-6 {
    width: calc(100%/2);
  }

  .col-sm-4 {
    width: calc(100%/3);
  }

  .col-sm-8 {
    width: calc(100%/1.5);
  }

  .chart div {
    height: 100% !important;
  }

  .own-padding {
    padding: 0px !important;
  }

  .nav-tabs li {
    margin-inline: auto;
    margin-bottom: 15px;
  }

  .nav-tabs li .tab-button {
    margin-right: 0px;
  }

  .page-title {
    font-size: 20px !important;
  }

  .btn-view {
    padding: 8px 25px !important;
  }

  .filter>div {
    padding: 0px 18px !important;
  }
}



.btn-toggle-sidebar {
  border: none;
  background: transparent;
  font-size: 1.25rem;
  color: #202224;
}

/* Content area */
.content {
  padding: 20px;
  background-color: #f5f7fb;
  min-height: 100vh;
}

.sidebar img {
  width: 106px !important;
}

.filter div.btn {
  padding: 0px;
}

.filter .border {
  border-color: #eeeeee !important;
}

.filter .border:first-child {
  border-radius: 10px 0px 0px 10px;
}

.filter .border:last-child {
  border-radius: 0px 10px 10px 0px;
}

.filter .dropdown {
  border: 0px;
}

.filter>div {
  height: 45px;
  padding: 0px 20px;
  display: flex;
  background-color: #fff;
  justify-content: center;
}

.filter>div.dropdown button {
  border: 0px !important;
  padding: 10px 0px;
}

.filter button {
  text-decoration: none;
}

.filter .btn:hover,
.filter .btn.show {
  background-color: transparent;
}

.filter .btn-link {
  text-decoration: none;

  &:focus {
    box-shadow: none;
  }

  &:active {
    background: none !important;
    border: none !important;
  }
}

/* Permission Card */
.permission-card {
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 20px;
  height: 100%;
  background-color: #FBFCFF;
}

.permission-label {
  margin-left: 0.5rem;
}

.save-btn {
  background-color: #38c4f2;
  border: none;
}

.save-btn:hover {
  background-color: #38c4f2;
  border: none;
}

.chart {
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  padding: 35px;
}

.chart.sm {
  padding: 25px 15px;
}

.chart canvas {
  width: 100% !important;
}

.stat-card {
  border-radius: 12px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

.stat-card span.text-muted {
  font-weight: 600;
  font-size: 14px;
}

.icon-circle img {
  width: 45px;
}

.table td {
  vertical-align: middle;
}

.notifications-table .name {
  font-weight: 600;
  display: flex;
  white-space: nowrap;
}

.notifications-table .name i {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
}

.notifications-table .message {
  font-size: 0.9rem;
  color: #6c757d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 500px;
  display: block;
}

.btn-view {
  background-color: #00CFE8;
  color: white;
  padding: 11px 43px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
}

.notifications-table td.time {
  font-size: 0.85rem;
  color: #6c757d;
}

.table tr.row-selected td,
.table tr.row-selected th {
  background-color: #f4f7ff !important;
}

/************************************** Data Table ************************************/
/************************************** Data Table ************************************/
table.dataTable>tbody>tr>th,
table.dataTable>tbody>tr>td {
  padding: 15px 10px;
}

nav.pagination button:first-child {
  border-radius: 10px 10px 10px 10px;
}

div.dt-layout-cell .dt-info {
  font-size: 14px;
  color: #202224;
}

div.dt-container .dt-paging .dt-paging-button {
  margin-left: 0px;
  border: 1px solid #d5d5d5 !important;
  border-top: 0px !important;
  border-bottom: 0px !important;
  font-size: 14px;
  border-radius: 0px;
}

div.dt-container .dt-paging .dt-paging-button:first-child,
div.dt-container .dt-paging .dt-paging-button:last-child {
  border: 0px solid #d5d5d5 !important;
  font-size: 14px;
}

div.dt-container .dt-paging .dt-paging-button:hover,
div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
  background: #00aee6;
  border: 1px solid #00aee6;
  color: #fff !important;
}

.dt-length {
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 5px 15px;
  background-color: #fff;
}

div.dt-container .dt-input {
  border: 0px;
}

.dt-layout-cell.dt-layout-end {
  border: 1px solid #d7d7d7;
  border-radius: 7px;
  background-color: #fff;
}

div.dt-container .dt-search input {
  border: 0px;
}

div.dt-container .dt-search::before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  /* or "Font Awesome 6 Free", depending on your version */
  font-weight: 900;
  /* necessary for solid icons */
  position: relative;
  margin-right: 8px;
  /* optional spacing */
  color: #313131;
  padding: 0px 0px 0px 10px;
}

.text-sm {
  font-size: 0.875rem;
}

.text-sm img {
  width: 20px;
}

/* Table wrapper */
.table-wrapper {
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Table general */
.table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0px !important;
  border: 1px solid #D5D5D5;
  border-radius: 10px !important;
}

.table tr th:first-child {
  border-radius: 10px 0px 0px 0px;
}

.table tr th:last-child {
  border-radius: 0px 10px 0px 0px;
}

.table tr:last-child td:first-child {
  border-radius: 0px 0px 0px 10px;
}

.table tr:last-child td:last-child {
  border-radius: 0px 0px 10px 0px;
}

.table.table-hover tr:first-child td:first-child {
  border-radius: 10px 0px 0px 0px;
}

.table.table-hover tr:first-child td:last-child {
  border-radius: 0px 10px 0px 0px;
}

.table.table-hover tr:last-child td:first-child {
  border-radius: 0px 0px 0px 10px;
}

.table.table-hover tr:last-child td:last-child {
  border-radius: 0px 0px 10px 0px;
}

/* Header styling */
.table thead th {
  text-align: center;
  font-weight: bold;
  color: #202224;
  background-color: #f9fafc;
}


.table tbody tr:hover,
.table tbody tr td:hover {
  background-color: #fff;
}

.table td,
.table th {
  text-align: center;
  padding: 14px;
  vertical-align: middle;
  border-bottom: 1px solid #e2e8f0;
  border-left: 0px;
  border-right: 0px;
  font-size: 13px;
  white-space: nowrap !important;
}

.form-check-input:checked {
  background-color: #202224;
  box-shadow: none;
  border-color: #202224;
}

.form-check-input[type=checkbox] {
  box-shadow: none;
}

.form-check-input:focus {
  border-color: #202224;
}

.bg-light {
  background-color: #FBFCFF !important;
}

/* Last row no border */
.table tbody tr:last-child td {
  border-bottom: none;
}

/* View button */
.btn-sm {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  background-color: #63D8FB;
  color: #fff;
  border: none;
}

.theme-bg-blue,
button.btn.theme-bg-blue {
  color: #3326ef;
  background-color: #d4d5fc;
  padding: 4px 5px;
  border-radius: 7px;
  width: 100px;
  text-align: center;
}

.theme-bg-skyblue,
button.btn.theme-bg-skyblue {
  color: #1cb7d0;
  background-color: #d4fafc;
  padding: 4px 5px;
  border-radius: 7px;
  width: 100px;
  text-align: center;
}

.theme-bg-purple,
button.btn.theme-bg-purple {
  color: #6226EF;
  background-color: #e0d4fc;
  padding: 4px 5px;
  border-radius: 7px;
  width: 100px;
  text-align: center;
}

.theme-bg-orange,
button.btn.theme-bg-orange {
  color: #ef9126;
  background-color: #fce9d4;
  padding: 4px 5px;
  border-radius: 7px;
  width: 100px;
  text-align: center;
}

.pending-approval button.btn.theme-bg-purple {
  margin-left: auto;
  margin-right: 0px;
}

.theme-bg-red,
button.btn.theme-bg-red {
  color: #f26051;
  background-color: #fcd7d4;
  padding: 4px 5px;
  border-radius: 7px;
  width: 100px;
  text-align: center;
}

.theme-bg-green,
button.btn.theme-bg-green {
  color: #00B69B;
  background-color: #ccf0eb;
  padding: 6px 5px;
  border-radius: 7px;
  width: 100px;
  text-align: center;
}

td .theme-bg-blue,
td .theme-bg-skyblue,
td .theme-bg-purple,
td .theme-bg-green,
td .theme-bg-orange,
td .theme-bg-red {
  margin: auto;
}

.badge-green,
.badge-green:hover,
.badge-green:active {
  padding: 5px 7px;
  color: #00B69B !important;
  background: #ccf0eb !important;
  border-color: #ccf0eb !important;
}

.badge-red,
.badge-red:hover,
.badge-red:active {
  padding: 5px 7px;
  color: #EF3826 !important;
  background: #fcd7d4 !important;
  border-color: #fcd7d4 !important;
}

.pending-approval button.btn,
.large-width {
  width: 150px;
  margin-block: 15px;
}

.pending-approval button.btn.badge-green,
.pending-approval button.btn.badge-red {
  width: auto;
  font-size: 14px;
}

h5 {
  font-size: 18px;
  font-weight: bold;
}

.pending-approval h6 {
  font-size: 16px;
  font-weight: bold;
}

.pending-approval span {
  font-size: 14px !important;
}

.pending-approval button.btn i {
  padding-right: 10px;
}

.pending-approval :not(.btn-check)+.btn:active {
  background-color: #198754;
  border-color: #198754;
  color: #fff;
}

.card .card-body h5.card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 6px 0px 15px 0px;
}

.card .btn-view {
  font-size: 16px !important;
}

.card .card-body div b {
  font-size: 15px;
}

.card .card-body div {
  font-size: 13px;
}

.card .card-body button {
  font-size: 14px !important;
}

#load-details table {
  padding: 10px !important;
}

#load-details .card-body {
  padding: 0px;
}

#load-details table tr th {
  border-bottom: 0px;
}

#load-details table tr th,
#load-details table tr td {
  padding: 5px;
}

#load-details table tr:last-child td {
  color: #A6A6A6;
}

td div.grey {
  width: 100px;
  margin: auto;
  border-radius: 5px;
}

td div.grey input {
  width: 100%;
  text-align: center;
  background-color: #F1F4F9;
  border-radius: 5px;
  padding: 4px 10px;
  border: 1px solid #D5D5D5;
}

td div.grey input:focus-visible {
  outline: none;
}

.true {
  color: #fff;
  background-color: #00B69B;
  padding: 3px;
  border-radius: 50px;
  width: 60px;
  margin: auto;
}

.false {
  color: #fff;
  background-color: #f44336;
  padding: 3px;
  border-radius: 50px;
  width: 60px;
  margin: auto;
}


.tab-pane h6 {
  font-size: 20px;
  font-weight: bold;
}

/* Filter controls */
.dropdown .btn-outline-secondary {
  border-color: #ccc;
  background-color: #fff;
  color: #202224;
  font-weight: 500;
  border-radius: 10px;
}

.btn-outline-danger {
  border-radius: 10px;
  font-weight: 500;
  color: #f44336;
  border: none;
  background: transparent;
}

.btn-view-check:checked+.btn-view,
.btn-view.active,
.btn-view.show,
.btn-view:first-child:active,
:not(.btn-view-check)+.btn-view:active {
  color: #fff;
  background-color: var(--primary-color);
  border: 1px solid transparent;
}

.btn-view,
.btn-view:hover,
.btn-view:active {
  background-color: var(--primary-color);
  color: #fff;
}

/* Search input */
input[type="search"] {
  border-radius: 10px;
  padding-left: 15px;
  border: 1px solid #ddd;
}

/* Icon style */
.fa-filter {
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
}

ul.dropdown-menu.dropdown-menu-end.full-width.show {
  padding: 0px;
}

.filter select,
.filter input,
.filter button {
  font-size: 14px;
}

/* charts Css */

.chart h2 {
  font-size: 20px;
  color: #202224;
  padding-bottom: 20px;
}

.disbursement-payment-chart {
  width: 100%;
}

.nav-tabs {
  border: 0px;
}

.nav-tabs .nav-link {
  color: #202224;
  border: 1px solid #D5D5D5;
}

.nav-tabs .nav-link.active {
  background-color: #00cfff;
  color: white;
}

.fade:not(.show) {
  display: none !important;
}

#rating .table {
  width: 50%;
}

#rating .table tr th:first-child,
#rating .table tr td:first-child {
  text-align: left;
}

#rating .table tr th:last-child,
#rating .table tr td:last-child div.grey {
  text-align: right;
  margin-right: 0px;
}

#myTabContent .rounded {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}

.rounded {
  border-radius: 10px !important;
}

.login-container {
  max-width: 400px;
  margin: 100px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form .form-control.password {
  padding-right: 40px !important;
}

.password-toggle-eye {
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.auth-container {
  max-width: 400px;
  margin: 120px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 150px;
}

.login-container h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.11px;
  color: #202224;
}

.login-container p {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.06px;
  color: #202224;
}

.auth-container h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.11px;
  color: #202224;
}

.auth-container p {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.06px;
  color: #202224;
}

.btn.custom-btn {
  background-color: #63D7FA;
  border-color: #63D7FA;
  color: #fff;
}

.btn-outline-success {
  width: 150px;
  border-radius: 7px;
  border-color: #00B69B !important;
  color: #00B69B !important;
}

.btn-outline-success:hover {
  background-color: #00B69B;
  border-color: #00B69B !important;
  color: #fff !important;
}

.btn-outline-danger {
  width: 150px;
  border-radius: 7px;
  border: 1px solid #F93C65 !important;
  color: #F93C65 !important;
}

.btn-outline-danger:hover {
  background-color: #F93C65;
  border-color: #F93C65 !important;
  color: #fff !important;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: #fff;
  background-color: #50c9ec;
  border-color: #50c9ec;
}

.login-container a {
  color: #35393d;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.06px;
}

.auth-container a {
  color: #63D7FA;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.06px;
}

.auth-container span {
  color: #35393d;
}

input.form-control:focus,
input.form-control:hover {
  outline: none;
  box-shadow: none;
  border-color: #63D7FA;
  /* Optional: choose a subtle border color */
}

.form-control {
  border-color: #D8D8D8;
  background-color: #F1F4F9;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0px;
}

form .form-control {
  padding: 15px !important;
  border-radius: 7px;
}

.add-role .form-control {
  padding: 20px;
}

.notification .form-control {
  padding: 15px;
}

.form-control:hover {
  border-color: #D8D8D8;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.06px;
}

label {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.06px;
}

.custom-dropzone {
  background: #f9fafc;
  border: 2px dashed #d1d5db;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
}

.custom-dropzone p {
  color: #6b7280;
}

.custom-file-btn {
  background-color: #63D8FB;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
}

.username-badge {
  background: #f9fafc;
  border: 1px solid #d1d5db;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.username-badge span {
  background-color: #ffffff;
  color: #00b4d8;
  padding: 8px 12px;
  /* border-radius: 30px; */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  /* border-color: #808080; */
  border: 1px solid #d1d5db;
}

.username-badge span .remove-btn {
  background-color: #f87171;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  border: none;
}

.bg-light h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.11px;
  color: #202224;
}

input.form-control:focus,
input.form-control:hover {
  outline: none;
  box-shadow: none;
  border-color: #D5D5D5;
  /* Optional: choose a subtle border color */
}

.form-control {
  border-color: #D5D5D5;
  background-color: #F5F6FA;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: -0.06px;
}

.form-control:hover {
  border-color: #D5D5D5;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.06px;
}

label {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.06px;
}


.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: #fff;
  background-color: #50c9ec;
  border-color: #50c9ec;
}

.form-control:focus {
  box-shadow: none;
  border-color: #D5D5D5;
}

/* creat user */
.card {
  border-radius: 15px;
  background: transparent;
}

.card.pending-approval {
  padding: 20px;
}

.card button.btn.theme-bg-green:active {
  color: #66d3c3;
  background-color: #ccf0eb;
  border-color: #ccf0eb;
}

.card button.btn.theme-bg-purple:active {
  color: #6226EF;
  background-color: #e0d4fc;
  border-color: #e0d4fc;
}

.card button.btn.theme-bg-red:active {
  color: #f26051;
  background-color: #fcd7d4;
  border-color: #fcd7d4;
}

.upload-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: auto;
  color: #6c757d;
}

.upload-text {
  color: #63D8FB;
  font-size: 14px;
  margin-top: 8px;
  cursor: pointer;
}

.form-select:focus {
  box-shadow: none;
  border-color: #D5D5D5;
}

.select2 {
  width: 100% !important;
}

.select2-container .select2-selection:not(.select2-selection--multiple) {
  padding: 14px 2px;
  font-size: 13px !important;
  border-color: #D8D8D8 !important;
  background-color: #F1F4F9 !important;
}

.select2-container .select2-selection .select2-selection__arrow {
  top: 10px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-radius: 5px !important;
}

.select2-results__option {
  font-size: 13px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  padding: 0px 5px !important;
  font-size: 16px;
  border-right: 1px solid #ced4da;
  margin-right: 10px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: white;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  padding: 0px 10px !important;
}

.upload-text a {
  color: #63D7FA
}

/* admin side user */
.admin-side-user .profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.admin-side-user .card {
  border: none;
  border-radius: 12px;
  padding: 30px;
}

.admin-side-user .label-title {
  font-weight: 500;
  font-size: 14px;
  color: #6c757d;
}

.admin-side-user .status-badge {
  background-color: #d1f7e6;
  color: #198754;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.card-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #e0e0e0;
}

.blue-button {
  background-color: #63D8FB;
  color: white;
  border: none;
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 6px;
}

.user-scroll-box {
  background-color: #f7f8fc;
  max-height: 180px;
  overflow-y: scroll;
  border-radius: 5px;
  padding: 20px;
}

.user-scroll-box .row>div {
  margin-bottom: 8px;
  font-size: 14px;
}

h4 {
  font-weight: 700;
  margin-bottom: 25px;
}

.label-title {
  font-weight: 600;
  font-size: 14px;
  color: #555;
}

.label-content {
  font-size: 14px;
  color: #555;
}

/* profile profile profile */
.profile-page .profile-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  /* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
}

.own-padding {
  background-color: white;
  padding: 30px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.profile-page .profile-img,
.user-profile-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.profile-page .upload-text {
  color: var(--primary-color);
  cursor: pointer;
  margin-bottom: 20px;
}

.profile-page .form-control {
  background-color: #f1f5f9;
  border: var(--bs-border-width) solid var(--bs-border-color);
}

.profile-page .form-control:focus {
  box-shadow: none;
  border-color: #86b7fe;
}

.profile-page .btn-custom {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.profile-page .btn-custom:hover {
  background-color: #00aee6;
}

/* pushnotification pushnotification pushnotificationform  */

.custom-dropzone {
  background: #f9fafc;
  border: 2px dashed #d1d5db;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
}

.custom-dropzone p {
  color: #6b7280;
}

.custom-file-btn {
  background-color: #63D8FB;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
}

.username-badge {
  background: #f9fafc;
  border: 1px solid #d1d5db;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.user-tag {
  display: flex;
  align-items: center;
  background-color: #f9fafc;
  font-size: 14px;
  color: #495057;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #ced4da;
}

.user-label {
  padding: 2px 20px;
}

.close-icon {
  width: 45px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ced4da;
}

.close-icon i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #f03e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f03e3e;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

.bg-light h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.11px;
  color: #202224;
}

.form-control {
  border-color: #D8D8D8;
  background-color: #F1F4F9;
  color: #494949;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.06px;
}

label {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.06px;
}

/* viewpushnotification viewpushnotification viewpushnotification */
.card-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #e0e0e0;
}

.blue-button {
  background-color: #63D8FB;
  color: white;
  border: none;
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 6px;
}

.user-scroll-box {
  background-color: #f7f8fc;
  max-height: 180px;
  overflow-y: scroll;
  border-radius: 5px;
  padding: 20px;
}

.user-scroll-box .row>div {
  margin-bottom: 8px;
  font-size: 14px;
}

h4 {
  font-weight: 700;
  margin-bottom: 25px;
}

.label-title {
  font-weight: 600;
  font-size: 14px;
  color: #555;
}

.label-content {
  font-size: 14px;
  color: #555;
}

/* creat user */
.card {
  border: none;
  box-shadow: none;
}

.upload-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: auto;
  color: #6c757d;
}

.upload-text {
  color: #63D8FB;
  font-size: 14px;
  margin-top: 8px;
}

.form-select:focus {
  box-shadow: none;
  border-color: #D5D5D5;
}

.upload-text a {
  color: #63D7FA
}

/* basic details */
.custom-tabs .nav-link {
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
  background-color: white;
  margin-right: 5px;
  padding: 5px 20px;
}

.custom-tabs .nav-link.active {
  background-color: #4cd6ff;
  color: white;
  border: none;
}

.label {
  font-weight: 500;
  color: #333;
}

.value {
  color: #555;
}

.kyc-status {
  background-color: #e6fff0;
  color: #1aa260;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.profile-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.box {
  background-color: white;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 5px;
}

.info-row {
  margin-bottom: 15px;
}

/* kyc document */
.custom-tabs .nav-link {
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
  background-color: white;
  margin-right: 5px;
  padding: 5px 20px;
}

.custom-tabs .nav-link.active {
  background-color: #4cd6ff;
  color: white;
  border: none;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.profile-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.status-badge {
  background-color: #d7f7e7;
  color: #1aa260;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.document-box {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.document-name {
  font-weight: 500;
  color: #333;
}

/* references references */
.tab-button {
  background-color: white;
  border: 1px solid #ccc !important;
  border-radius: 5px;
  color: #808080 !important;
  padding: 6px 18px;
  margin-right: 36px;
}

.tab-button.active {
  background-color: #4cd1f0;
  color: white !important;
  border-color: #4cd1f0;
}

.table-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 0 1px #e0e0e0;
  margin-top: 20px;
}

.badge-true {
  background-color: #198754;
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 14px;
}

.badge-completed {
  background-color: #d2f5e3;
  color: #198754;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 14px;
}

.badge-pending {
  background-color: #ffe2e2;
  color: #dc3545;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 14px;
}

.action-ellipsis {
  font-size: 20px;
  cursor: pointer;
}

.user-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.user-header h5 {
  margin: 0;
}

/* loans loans */
/* .tab-button {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
  padding: 6px 18px;
  margin-right: 10px;
}

.tab-button.active {
  background-color: #4cd1f0;
  color: white;
  border-color: #4cd1f0;
} */

.table-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 0 1px #e0e0e0;
  margin-top: 20px;
}

.table thead {
  background-color: #f0f2f5;
}

.table tr:last-child td {
  border-bottom: none !important;
}

.badge-completed {
  background-color: #d2f5e3;
  color: #198754;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 14px;
}

.badge-rejected {
  background-color: #ffe2e2;
  color: #dc3545;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 14px;
}

.action-ellipsis {
  font-size: 20px;
  cursor: pointer;
}

.user-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.user-header h5 {
  margin: 0;
}

/* payments payments */
/* .tab-button {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
  padding: 6px 18px;
  margin-right: 10px;
}

.tab-button.active {
  background-color: #4cd1f0;
  color: white;
  border-color: #4cd1f0;
} */

.table-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 0 1px #e0e0e0;
  margin-top: 20px;
}

.table thead {
  background-color: #f0f2f5;
}

.table tr:last-child td {
  border-bottom: none !important;
}

/* .table tr td input,.table tr td a{
  display: flex;
} */
.table>:not(:last-child)>:last-child>* {
  border-bottom-color: #aeafb0;
}

.view-button {
  background-color: #4cd1f0;
  color: white;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  border: none;
}

.user-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.user-header h5 {
  margin: 0;
}

.error-page h1,
.error-page .h1 {
  font-size: 12rem;
}

@media (max-width: 991px) {

  .error-page h1,
  .error-page .h1 {
    font-size: 8rem;
  }
}

.tbl-top-actions {
  position: absolute;
  z-index: 1;
  left: 44%;
  top: 14px;
  font-size: 16px;
  color: rgb(114, 114, 114);
}

.tbl-top-actions i {
  border: 1px solid rgb(216, 216, 216);
  padding: 8px;
  border-radius: 3px;
  background-color: white;
  cursor: pointer;
}

.con-vars {
  border: 1px solid #ccc;
  padding: 1rem;
}

.con-vars code {
  font-size: 14px;
  font-weight: 400;
  color: gray;
  display: block;
  cursor: pointer;
}

.con-vars code:hover {
  color: blue;
}