#main {
  margin-block: 70px;
  padding: 20px 30px;
  transition: all 0.3s;
}
  
@media (max-width: 1199px) {
  #main {
    padding: 5px;
  }
}

.input-group {
  align-items: start;
}

/*--------------------------------------------------------------
>>> DASHBOARD MAIN HEADER
--------------------------------------------------------------*/

.main-header {
  background-image: url('../assets/img/bg-img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 20px;
  border-radius: 0.375rem;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;

  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(41, 98, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.main-header > * {
  position: relative;
  z-index: 2;
}

.user_lastname {
  font-weight: 600;
  letter-spacing: 1.1px;
}

.main-header button {
  text-shadow: none;
}

.balance {
  font-size: 28px;
  font-weight: 600;
  font-family: outfit !important;
}

.balance-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.balance-label .bi {
  font-size: 1.2rem;
  cursor: pointer;
}

.main-header .earning-bal {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-header .earning-bal span {
  font-weight: 300 !important;
}

.rounded-circle {
  margin-top: -70px;
  border: 3px solid white !important;
}

.services-card,
.dashboard-card {
    border: none;
    transition: border 0.3s ease;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.services-card:before,
.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: .81px solid transparent; 
  border-image: linear-gradient(to right, #0050ff, #0cf, #0050ff) 1 stretch; 
  pointer-events: none;
}

.services-title {
  color: #4a4a4a;
  font-size: 1.2rem;
  font-weight: 500;
}

.service-link {
  text-decoration: none;
  color: #4a4a4a;
}

.service-item:hover {
  color: var(--primary-color, #003cff);
  transition: all 0.3s ease;
}

.service-wrapper {
  cursor: pointer;
}

.service-item i {
  cursor: pointer;
  color: var(--primary-color, #007bff);
}

.icon-wrapper {
  background-color: #f0f7ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.icon-wrapper i {
  font-size: 1.5rem;
  color: #007bff;
}

.service-item:hover .icon-wrapper {
  background-color: #007bff;
}

.service-item:hover .icon-wrapper i {
  color: #ffffff;
}

.service-item small {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #6c757d;
}

.recent-transactions,
.cta-banner {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 15px;
}

.footer-nav {
  background-color: #ffffff;
  border-top: 1px solid #ebebeb;
  padding: 10px 0;
  z-index: 990;
}

.footer-nav .nav-link {
  color: #6f6ed9;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav {
  display: none; 
}

@media (max-width: 767px) {
  .footer-nav {
      display: flex;
  }
}

@media (max-width: 768px) {
  .row-cols-4 {
      --bs-rows: 2;
      --bs-columns: 4;
  }
}

@media (max-width: 991px) {
  .main-header-button {
      justify-content: space-between !important;
      width: 100%;
  }
}

@media (min-width: 992px) {
  .main-header-button {
      justify-content: center !important;
  }
} 


/*--------------------------------------------------------------
  >>> TRANSACTION HISTORY SECTION
  --------------------------------------------------------------*/

.search-icon {
  cursor: pointer;
}

#sortCategoryDropdown,
#filterStatusDropdown {
  font-size: 1rem !important;
}

.transaction-container {
  margin-bottom: 2rem;
}

.transaction-container h5 {
  font-weight: 600;
  font-family: outfit;
}

.transaction-view-all {
  font-size: 1rem;
  text-decoration: none;
  background: none !important;
}

.transaction-icon {
  font-size: 1.5rem;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-badge {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
}

/* ---  */

.status-successful {
  background-color: #e6f7e9 !important;
  color: var(--notify_success_colo) !important;
}

.status-successful2 {
  background-color: #E8F5E9;
  color: #2E7D32;
  padding: 3px 13px;
  border-radius: 1em;
}

/* ---  */

.status-unsuccessful {
  background-color: #fde8e8 !important;
  color: var(--color3) !important;
}

.status-unsuccessful2 {
  background-color: #FFF3E0 !important;
  color: #E65100 !important;
  padding: 3px 13px;
  border-radius: 1em;
}

/* ---  */

.status-pending {
  background-color: var(--color10) !important;  
  color: #E67E22 !important; 
}

.status-pending2 {
  background-color: #FFE082 !important;  
  color: #F57F17  !important; 
  padding: 3px 13px;
  border-radius: 1em;
}

/* ---  */

.status-reversed {
  background-color: var(--color11) !important; 
    color: #555555 !important; 
}

.text-success {
  color: var(--highlight_color) !important;
}

.status-disapproved {
  background-color: #FFEBEE !important;
  color: #B71C1C !important;
  padding: 3px 13px;
  border-radius: 1em;
}

.status-banned {
  background-color: #FFCDD2 !important;
  color: #D32F2F !important;
  padding: 3px 13px;
  border-radius: 1em;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #0d6efd;
  color: #ffffff;
}

/* Adjust font size for smaller screens */
@media (max-width: 767px) {
  .nav-tabs-bordered .nav-link {
      font-size: 12px; /* Smaller font size for small screens */
  }
}


/*--------------------------------------------------------------
>>> HEADER
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 350px;
  }
}

.logo img {
  max-height: 36px;
  margin-right: 6px;

}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
}

.header .toggle-sidebar-btn {
  font-size: 2rem;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.user-icon {
  font-size: 1.5rem;
  color: var(--highlight_color);
}

.dropdown-menu {
  min-width: 5rem; 
  position: absolute; 
  transform: translateX(-100%);
  top: 100%; 
}

.user-menu {
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown-item {
  color: var(--highlight_color);
}

.logout-option a {
  text-decoration: none;
  color: var(--highlight_color);
}

.logout-option {
  position: absolute;
  left: -100%; 
  top: 100%;
  background-color: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  display: none; 
  white-space: nowrap; 
  z-index: 1000;
}

.user-icon:hover + .logout-option {
  display: block;
}

/*--------------------------------------------------------------
>>> SIDEBAR
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 999;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  /* scrollbar-track */
  scrollbar-color: #4154f1 transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}

.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 999;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #4154f1 transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}



@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #4154f1;
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4154f1;
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: #4154f1;
  background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i {
  color: #4154f1;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-link.active {
  color: var(--highlight_color); 
  font-weight: bold;
}

.sidebar-nav .nav-link.active .bi {
  color: var(--highlight_color); 
}


/*--------------------------------------------------------------
>>> PROFILE PAGE
--------------------------------------------------------------*/
.profile-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.profile-card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
}

.profile-card p {
  color: var(--highlight_color);
  font-weight: bold;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

@media (max-width: 768px) {
  .profile-card img{
      width: 100px;
      height: 100px;
  }

  .profile-card p {
      font-size: 1.5rem;
  }

  .profile .card {
      margin-top: 30px;
  } 
}


/*--------------------------------------------------------------
>>> SUPPORT PAGE
--------------------------------------------------------------*/
.support-section:first-child {
  margin-top: 0;
}

.support-section {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.support-section h5 {
  margin-bottom: 15px;
}

.support-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.support-button.call {
  background-color: #28a745;
}

.support-button.chat {
  background-color: #007BFF;
}

.support-button.whatsapp {
  background-color: #25D366;
}

.support-button.email {
  background-color: #007BFF;
}

.support-button:hover {
  opacity: 0.9;
  color: #fff;
}



/*--------------------------------------------------------------
>>> WITHDRAWAL MODALS STYLES
--------------------------------------------------------------*/

.bg-global-blue {
  background-color: #0d6efd;
}

.btn-close-white {
  filter: brightness(0) invert(1);
}

.btn-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.withdrawal-banner {
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.withdrawal-banner h2 {
  margin-bottom: 20px;
}

.withdrawal-stats {
  display: flex;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: bold;
  display: block;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}



/*--------------------------------------------------------------
>>> FUNDING SECTION STYLING HERE
--------------------------------------------------------------*/

.temp-acct-card {
  border-radius: 15px !important;
  overflow: hidden !important;
}


.temp-acct-card-header{
  background-color: var(--highlight_color) !important;
}


.list-group-item {
  border-left: none;
  border-right: none;
  padding: 1rem 1.25rem;
}

.list-group-item:first-child {
  border-top: none;
}

.list-group-item:last-child {
  border-bottom: none;
}

@media (max-width: 576px) {
  .container {
      padding-left: 10px;
      padding-right: 10px;
  }
}


/*--------------------------------------------------------------
>>> BANK TRANSFER SECTION STYLING HERE
--------------------------------------------------------------*/
 .bank-transfer-main {
  background: #f4f4f4;
  padding: 20px;
}

.bank-transfer-container {
  background: #fff; 
  padding: 20px;
  margin-bottom: 1.25rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bt-card-body {
  padding: 20px;
}

.form-control {
  margin-bottom: 10px;
}

.charge-input {
  background-color: #e9ecef; 
  color: #495057; 
  cursor: not-allowed;
  pointer-events: none;
} 

/*--------------------------------------------------------------
>>> MODAL HERE
--------------------------------------------------------------*/
.modal-body {
  padding: 1rem;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-body h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.modal-body img {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 15px;
}

.modal.fade .modal-dialog {
  position: fixed;
  bottom: 0; 
  right: 0; 
  left: 0; 
  top: auto;
  margin: 0 auto; 
  transform: translateY(100%); 
  animation-name: slideUpFromBottom; 
  animation-duration: 0.3s; 
  animation-fill-mode: forwards; 
}

@keyframes slideUpFromBottom {
  from {
      transform: translateY(100%);
  }
  to {
      transform: translateY(0%); 
  }
}

.modal-dialog {
  width: 100%; 
  max-width: 600px; 
}

.modal-content {
  overflow: hidden;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .modal-dialog {
      max-width: 40%; 
  }
}

.modal-sm {
  max-width: 280px;
}

@media (max-width: 575.98px) {
  .modal-dialog {
      margin: 0.5rem auto;
      max-width: 95%;
  }
}


#fundWalletModal .account-number {
  font-size: 1.2em;
}

#fundWalletModal .fund-with-card {
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

/* .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
} */

.modal .lead > strong {
  font-weight: bold !important;
}

.success-icon {
  background-color: #e8f5e9;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.account-details {
  background-color: #f8f9fa;
  border-left: 4px solid var(--highlight_color);
}


/*--------------------------------------------------------------
>>> REFERRAL SECTION STYLES
--------------------------------------------------------------*/

.referral-banner {
  background-color: var(--global-blue);
  color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.referral-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.referral-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
}

.referral-description {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.referral-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}

.referral-code-container {
  display: flex;
  margin-bottom: 1rem;
}

#referral-code {
  flex-grow: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

#copy-button {
  background-color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#copy-button:hover {
  background-color: #f0f0f0;
}

.referral-instruction {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
}

/*--------------------------------------------------------------
>>> ALL BILLS PAYMENT STYLING HERE
--------------------------------------------------------------*/

.network-selection {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: center;
  gap: 12px;
}

.network-card {
  text-align: center;
  width: 100px;
  height: 80px;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.network-card img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.network-card h6 {
  margin-top: 10px;
  font-weight: 600;
  font-size: .7rem;
}

.network-card {
  background-color: #ffff99;
}

.network-card.mtn h6 {
  color: #ffa200; /*FOR MTN TEXT COLOR  */
}

.network-card.airtel h6 {
  color: #ff002f; /*FOR AIRTEL TEXT COLOR  */
}

.network-card.glo h6 {
  color: #00a51b; /*FOR GLO TEXT COLOR  */
}

.network-card.nine-mobile h6 {
  color: #012b11; /*FOR 9MOBILE TEXT COLOR  */
}

.glo {
  background-color: #c7f03145;
}

.airtel {
  background-color: #fdb5ab89;
}

.mtn {
  background-color: #f6ec6166;
}

.nine-mobile  {
  background-color: #9ad52349;
}

.discount-p {
  font-size: .9rem;
  font-weight: 500;
  padding-top: .5rem;
}

.balance-check-banner {
  background: linear-gradient(to right, #0050ff, #6922b3);
  color: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.balance-check-banner .banner-content {
  flex: 1;
}

.balance-check-banner h2 {
  margin: 0 0 10px 0;
  font-size: 1.2em;
}

.balance-check-banner .check-button {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  /* padding: 2px 10px; */
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.balance-check-banner .check-button img{
  padding: 2px 15px;
  width: 80px;
}

.balance-check-banner .check-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.balance-check-banner .banner-image {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.balance-check-banner .banner-image img {
  width: 70px;
  height: 70px;
}

.vtu-modal-trans-details {
  font-size: 0.9rem;
}

.vtu-modal-trans-details-item {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.vtu-modal-trans-details-item img {
  width: 54px;
  background: none;
  border-radius: 50px;
  margin-right: -10px;
}

.vtu-modal-trans-details-item h4 {
  font-size: 0.8rem;
  margin-bottom: 0;
  font-weight: bold;
}

.vtu-modal-trans-details-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.modal-body .bi-check-circle-fill {
  font-size: 3rem;
}

.btn-close-white {
  font-size: 30px !important;
}

.dotted-hr {
  border: none;
  height: 2px;
  background-image: linear-gradient(to right, 
                                    rgba(0, 0, 255, 0) 0%, 
                                    rgba(0, 0, 255, 0.5) 50%, 
                                    rgba(0, 0, 255, 0) 100%);
  background-size: 10px 2px;
  background-repeat: repeat-x;
}


/*--------------------------------------------------------------
>>> STYLING FOR API & DOCS
--------------------------------------------------------------*/

.hero {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}
.price-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.price-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.api-section {
  margin-bottom: 3rem;
}
.code-block {
  background-color: #f4f4f4;
  border-radius: 4px;
  padding: 1rem;
  font-family: 'Courier New', Courier, monospace;
}


/*--------------------------------------------------------------
>>> THIS IS FOR KYC VERIFICATION
--------------------------------------------------------------*/

#imagePreview {
  max-width: 100%;
  max-height: 200px;
  margin-top: 10px;
}

.temp-acct-card {
  border: none;
  border-radius: 10px;
}

.temp-acct-card-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.form-label {
  font-weight: 500;
}

.btn-primary3 {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}

.btn-primary3:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.status-text {
  margin-left: auto;
  font-size: 16px;
  color: yellow;
}