/* Regular */
@font-face {
  font-family: 'lugspace';
  src: url('./fonts/aeonik_regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'lugspace';
  src: url('./fonts/aeonik_medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'lugspace';
  src: url('./fonts/aeonik_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'lugspace';
  }

/**/
body.light-theme {
    background-color: #f4f4f4;
  color: #000000;
}

body.dark-theme {
  background-color: #1e1e1e;
  color: #f0f0f0;
}

body.light-theme .sidebar {
    width: 200px;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
body.dark-theme .sidebar {
    width: 200px;
    background: #1e1e1e;
    border-right: 1px solid #2f2f2f;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
body.light-theme   hr {
    border: none;                /* remove default border */
    height: 1px;                 /* control thickness */
    background-color: #F1F1F3;   /* solid color */
    margin: .5rem 0;              /* vertical spacing */
  }
body.dark-theme   hr {
    border: none;                /* remove default border */
    height: 1px;                 /* control thickness */
    background-color: #2f2f2f;   /* solid color */
    margin: .5rem 0;              /* vertical spacing */
  }

body.light-theme   .menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 10px 0;
    color: #4b5563;
    text-decoration: none;
    border-left: 3px solid transparent;
  }
body.dark-theme   .menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 10px 0;
    color: #7A7A79;
    text-decoration: none;
    border-left: 3px solid transparent;
  }

body.light-theme   .menu a.active {
    color: #03624C;
    /* border-left: 3px solid #03624C; */
    /* background-color: #f0fdfa; */
    /* padding-left: 10px; */
    font-weight: 500;
  }
body.dark-theme   .menu a.active {
    color: #03624C;
    /* border-left: 3px solid #03624C; */
    /* background-color: #f0fdfa; */
    /* padding-left: 10px; */
    font-weight: 500;
  }
/**/

/* Optional: transition */
body {
  transition: background-color 0.3s, color 0.3s;
}

/**/
  body, html {
    height: 100%;
    font-family: 'lugspace', Arial, monospace;
    font-weight: normal;
  }
  
 body.light-theme   input::placeholder, body.light-theme
textarea::placeholder {
  color: #BDC3C9;         
  /* font-style: italic;  */
  font-size: 14px; 
  outline: none;
  font-weight: normal;
  /* opacity: 1;             */
}
 body.dark-theme   input::placeholder, body.dark-theme
textarea::placeholder {
  color: #7A7A79;         
  /* font-style: italic;  */
  font-size: 14px; 
  outline: none;
  font-weight: normal;
  /* opacity: 1;             */
}
  

body.dark-theme select option {
  background-color: #2e2e2e;
  color: #f0f0f0;
}



 body.light-theme .vertical-hr {
  width: 1px;              /* thin line */
  height: 30px;            /* full height of parent */
  background-color: #F1F1F3;  /* light gray line */
  margin: 0 16px;          /* spacing around the line */
}
 body.dark-theme .vertical-hr {
  width: 1px;              /* thin line */
  height: 30px;            /* full height of parent */
  background-color: #2f2f2f;  /* light gray line */
  margin: 0 16px;          /* spacing around the line */
}

.truncate-text {
  max-width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  .illustration-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }
  
  .illustration-section img {
    max-width: 100%;
    height: auto;
  }
  
  .form-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 2rem;
  }
  
  .form-wrapper {
    width: 100%;
    max-width: 400px;
  }
  
  .logo {
    display: block;
    margin: 0 auto 2rem;
    max-height: 4rem;
  }
  
  h2 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 2rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 12px;
  }
  
  input {
    padding: .8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
  }
  
  button {
    padding: 0.75rem;
    background-color: #111111;
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: bold;
    cursor: pointer;
  }
  
  /*button:hover {*/
  /*  background-color: #004d39;*/
  /*}*/
  
  /* Responsive Design */
  @media (max-width: 900px) {
    .illustration-section {
      display: none;
    }
  
    .form-section {
      flex: 1;
      width: 100%;
    }
  
    .form-wrapper {
      padding: 1rem;
    }
    .main-grid {
        display: block!important;
    }
        .top-stats {
        flex-direction: row!important;
        }
        .section-header {
    display: block!important;
        }
        .filters {
            margin: 10px auto;
            width: 286px;
        background-color: #F1F1F3!important;
        /*border-radius: 50px;*/
        /*padding: 4px;*/
        }
        .card {
            margin-top: 1rem;
            width: 100%!important;
        }
        .top-stats {
                    gap: 10px!important;
        }
  }
  
  /*@media (min-width: 769px) {*/
  /*  .illustration-section {*/
  /*    display: none;*/
  /*  }*/
  
  /*  .form-section {*/
  /*    flex: 1;*/
  /*    width: 100%;*/
  /*  }*/
  
  /*  .form-wrapper {*/
  /*    padding: 1rem;*/
  /*  }*/
  /*}*/


/*toast css*/
#toast-container {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 329px;
}


.toast {
  background-color: #111111;
  /*color: white;*/
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);*/
  font-size: 14px;
  animation: slideIn 0.3s ease, fadeOut 0.3s ease 3s forwards;
}

.toast-icon svg {
  flex-shrink: 0;
}

.toast-text {
  margin-left: 0px;
  font-weight: normal;
}


@keyframes slideIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateX(100%); }
}

button.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

button.loading::after {
  content: '';
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/*dashboard*/
/*  */
  .dashboard {
    display: flex;
    flex-direction: row;
    height: 100vh;
  }
  
  .sidebar {
    width: 200px;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .admin-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .admin-info .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  
  .admin-info h4 {
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
  }
  
  .admin-info p {
    font-size: 12px;
    color: #6b7280;
      max-width: 7rem;       /* or set a specific width like 250px */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  }

  .user-info div {
    font-size: 12px;
    color: grey;
  }
  .user-info {
          text-transform: capitalize;
  }
  
  /* .menu a {
    padding: 10px 0;
    display: block;
    color: #4b5563;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    border-left: 3px solid transparent;
  }
  
  .menu a.active {
    color: #111827;
    border-left: 3px solid #03624C;
    background-color: #f0fdfa;
    padding-left: 10px;
  } */


  

  
  .menu-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: #4b5563;
    position: relative;
  }
  /* by default hide the “active” version… */
  .menu-item .active-icon {
    display: none;
  }
  /* …and when the link has .active, show the active icon and hide the inactive one */
  .menu-item.active .inactive {
    display: none;
  }
  .menu-item.active .active-icon {
    display: inline-block;
  }
  
  
  
  .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .spacer {
    flex: 1;
  }
  
  
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    /* background: #fff; */
    /* border-bottom: 1px solid #e5e7eb; */
  }
  
  .topbar input {
    flex: 1;
    max-width: 320px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
  }
  
 body.light-theme .controls {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    border-radius: 20px;
    padding: 6px;
  }
   body.dark-theme .controls {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #2c2c2c;
    border-radius: 20px;
    padding: 6px;
  }

  .controls a {
    display: flex;
    align-items: center;
  }
  
  .theme-switcher {
    display: flex;
    gap: 6px;
  }
  
 body.light-theme .theme-switcher button {
    background: transparent;
    border: none;
    font-weight: normal;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #212121;
    transition: background 0.3s;
  }
   body.dark-theme .theme-switcher button {
    background: transparent;
    border: none;
    font-weight: normal;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #f0f0f0;
    transition: background 0.3s;
  }
  
  body.light-theme .theme-switcher .active {
    background-color: #03624C;
    color: white;
    border-radius: 20px;
    font-weight: 500;
  }
  
  body.dark-theme .theme-switcher .active {
    background-color: #03624C;
    color: white;
    border-radius: 20px;
    font-weight: 500;
  }
  
 body.light-theme .currency {
    padding: 6px 12px;
    /* background-color: #03624C; */
    color: #212121;
    border-radius: 4px;
    font-size: 12px;
    align-items: center;
    /* font-weight: 400; */
    display: flex;
    gap: 6px;
  }
  body.dark-theme .currency {
    padding: 6px 12px;
    /* background-color: #03624C; */
    color: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    align-items: center;
    /* font-weight: 400; */
    display: flex;
    gap: 6px;
  }
  .currency img {
    width: 10px;
  }
  .currency .ng {
    width: 14px;
  }
  
  .icon {
    width: 20px;
    height: 20px;
    /* background: gray;
    display: inline-block;
    border-radius: 50%; */
  }
  
  /* .bell {
    background: #f59e0b;
  } */
  
  .dashboard-content {
    padding: 0 20px;
  }
  .dashboard-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    /* font-weight: 700; */
  }

  .main-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  
  .main-panel {
    flex: 1;
  }
  
 body.light-theme .top-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
  }
  body.dark-theme .top-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #2c2c2c;
    border-radius: 10px;
  }
  /*#2f2f2f*/
  .top-stats div h3 {
    font-size: 12px;
    color: #999999;
    font-weight: 400;
  }
  
 body.dark-theme .top-stats div div {
    font-size: 24px;
    font-weight: 700;
    color: #f0f0f0;
  }
  body.light-theme .top-stats div div {
    font-size: 24px;
    font-weight: 700;
    color: #212121;
  }
  
  .export-btn {
    padding: 10px 20px;
    background: #03624C;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    /* font-family: 'lugspace'; */
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }
  
  .outline-btn {
    padding: 10px 20px;
  background: white;
    color: #03624c;
    border: 2px solid #03624C;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    /* font-family: 'lugspace'; */
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }

  .export-btn img {
    width: 14px;
    height: 14px;
  }
  
 body.light-theme .user-margin {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
  }
  body.dark-theme .user-margin {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
 body.light-theme .filters button,
  body.light-theme .filters select {
    margin-left: 10px;
    padding: 6px 12px;
    border: none;
    /* border-radius: 4px; */
    background: transparent;
    cursor: pointer;
    color: #212121;
    font-weight: normal;
    outline: none;
  }
  
  body.dark-theme .filters button,
  body.dark-theme .filters select {
    margin-left: 10px;
    padding: 6px 12px;
    border: none;
    /* border-radius: 4px; */
    background: transparent;
    cursor: pointer;
    color: #f0f0f0;
    font-weight: normal;
    outline: none;
  }

 body.light-theme .filters button.active {
    margin-left: 0;
    background-color: white;
    border-radius: 50px;
  }
  body.dark-theme .filters button.active {
    margin-left: 0;
    background-color: #2c2c2c;
    border-radius: 50px;
  }

  .filters select {
    padding: 0;
    align-items: center;
    margin-right: 4px;
  }

  body.light-theme .filters {
    /* flex-wrap: wrap; */
    background-color: #F1F1F3;
    border-radius: 50px;
    padding: 4px;
  }
  body.dark-theme .filters {
    /* flex-wrap: wrap; */
    background-color: #1e1e1e;
    border-radius: 50px;
    padding: 4px;
  }
  .date-picker {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    color: #374151;
    cursor: pointer;
  }
  .hidden-date-picker {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
  }
    
  
  .sidebar.right {
    width: 300px;
    background: #f9fafb;
    padding: 20px;
    border-left: 1px solid #e5e7eb;
    overflow-y: auto;
  }
  .trans-btn {
      background: transparent;
  }
 body.light-theme .card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
  }
  body.dark-theme .card {
    background: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
  }

  .card h4 {
    margin-bottom: 20px;
  }
  
  .user-list {
    list-style: none;
    margin-top: 10px;
  }
  
  .user-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 14px;
  }
  
  .user-list img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
  
  .user-list span {
    color: #6b7280;
    font-size: 12px;
  }
  
  .view-all {
    margin-top: 10px;
    padding: 8px 12px;
    border: none;
    background: #03624C;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .sidebar {
      display: none;
    }
  
    .dashboard {
      flex-direction: column;
    }
  
    .sidebar.right {
      display: none;
    }
  
    .main-content {
      width: 100%;
    }
  
    .top-stats {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
  
    .filters {
      flex-wrap: wrap;
      background-color: #004d39;
    }
  }


body.light-theme .skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}
body.dark-theme .skeleton {
  background: linear-gradient(90deg, #2f2f2f 25%, #e6e6e6 50%, #2f2f2f 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

.skeleton-text {
  width: 80px;
  height: 16px;
  margin-top: 4px;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/**/
/* Base style */
.data-loading {
  background-color: #f0f0f0;
  border-radius: 4px;
  min-height: 16px;
}

/* Loading animation */
.data-loading.loading,
.data-loading-text.loading,
.data-loading-chart.loading {
  position: relative;
  overflow: hidden;
}

.data-loading.loading::before,
.data-loading-text.loading::before,
.data-loading-chart.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  animation: loading-shimmer 1s infinite;
}

@keyframes loading-shimmer {
  0% {
    left: -150px;
  }
  100% {
    left: 100%;
  }
}


/*  */
body.light-theme  .usermgmt-wrapper {
    padding: 16px 0;
    margin-bottom: 1rem;
     background: white;
     border-radius: 10px;
  }
  
body.dark-theme  .usermgmt-wrapper {
    padding: 16px 0;
    margin-bottom: 1rem;
     background: #2c2c2c;
     border-radius: 10px;
  }
  
  .usermgmt-header {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 20px; */
    /*padding: 1rem;*/
        padding-bottom: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
}
  
body.light-theme  .usermgmt-filter-btn, body.light-theme
  .usermgmt-date-btn {
    padding: 8px 14px;
    background: #F1F1F3;
    /* border: 1px solid #dcdcdc; */
    border: none;
    border-radius: 20px;
    font-size: 14px;
    color: #212121;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }
  
  body.dark-theme  .usermgmt-filter-btn, body.dark-theme
  .usermgmt-date-btn {
    padding: 8px 14px;
    background: #2c2c2c;
    /* border: 1px solid #dcdcdc; */
    border: none;
    border-radius: 20px;
    font-size: 14px;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }
  
  /* .usermgmt-search {
    flex-grow: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    margin: 0;
    width: 300px;
    background-color: #F1F1F3;
  } */
  .usermgmt-search-wrapper {
    position: relative;
    /* flex-grow: 1; */
    width: 300px;
  }
  
  .usermgmt-search-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    opacity: 0.6;
  }
  
 body.light-theme .usermgmt-search {
    width: 100%;
    padding: 10px 16px 10px 16px; /* padding-left makes space for icon */
    /* border: 1px solid #dcdcdc; */
    border: none;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    background-color: #F1F1F3;
    margin: 0;
    color: #333;
  }
   body.dark-theme .usermgmt-search {
    width: 100%;
    padding: 10px 16px 10px 16px; /* padding-left makes space for icon */
    /* border: 1px solid #dcdcdc; */
    border: none;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    background-color: #1e1e1e;
    margin: 0;
    color: #f0f0f0;
  }
  
 body.light-theme .usermgmt-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    /*border-radius: 12px;*/
    overflow: hidden;
  }
  body.dark-theme .usermgmt-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2c2c2c;
    /*border-radius: 12px;*/
    overflow: hidden;
  }
  
  body.light-theme .usermgmt-table thead {
    background-color: #f8f8f8;
    color: #6b6b6b;
    font-weight: 500;
    text-align: left;
  }
  body.dark-theme .usermgmt-table thead {
    background-color: #1e1e1e;
    color: #6b6b6b;
    font-weight: 500;
    text-align: left;
  }
  
  .usermgmt-table th,
  .usermgmt-table td {
    padding: 16px;
    font-size: 14px;
    /* font-weight: normal; */
    white-space: nowrap;
    /*text-transform: capitalize;*/
  }
  
  .usermgmt-table .name {
      text-transform: capitalize;
  }

  .usermgmt-table th {
    font-weight: 500;
  }
  
body.light-theme  .usermgmt-table tbody tr {
    border-top: 1px solid #f0f0f0;
  }
  body.dark-theme  .usermgmt-table tbody tr {
    border-top: 1px solid #2f2f2f;
  }
  
  .usermgmt-status.active {
    color: #2CC295;
    /* font-weight: 600; */
  }
  
  /* Capitalize text and add colors to status */
.usermgmt-status {
    text-transform: capitalize;  /* Ensures text is capitalized */
    /*font-weight: bold; */
    padding: 5px 10px;  /* Add some padding for better readability */
    border-radius: 3px;  /* Optional, adds rounded corners */
}

.usermgmt-status.successful {
    /*background-color: #28a745; */
    color: #007B23;
}
.usermgmt-status.reversed {
    /*background-color: #28a745; */
    color: #007B23;
}

.usermgmt-status.failed {
    /*background-color: #dc3545; */
    color: #D00000;
}

.usermgmt-status.pending {
    /*background-color: #ffc107; */
    color: #ECA500;
}

  
  .usermgmt-view-link {
    color: #008060;
    font-weight: 600;
    text-decoration: none;
  }
  
  .usermgmt-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    /*margin-bottom: 20px;*/
  }
  
  .page-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
        vertical-align: middle;
        justify-content: center;
  }
  
  .page-btn.active {
    background: #004c3f;
    color: #fff;
  }

  .usermgmt-table input {
    margin: 0;
  }
  
/*  .modal.hidden { display: none; }*/
/*.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; }*/
/*.modal-content { background: white; padding: 20px; border-radius: 8px; width: 300px; text-align: center; }*/
/*.fee-controls { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 10px 0; }*/
/*.fee-controls button { padding: 5px 10px; }*/
.usermgmt-pagination button:disabled {
  background-color: transparent; 
  padding: 0;
}
.modal {
  display: none; /* Hide modal initially */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Dim background */
}

body.light-theme .modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 0 1rem 1rem;
  border-radius: 8px;
  width: 300px;
  max-width: 90%;
}

body.dark-theme .modal-content {
  background-color: #2c2c2c;
  margin: 10% auto;
  padding: 0 1rem 1rem;
  border-radius: 8px;
  width: 300px;
  max-width: 90%;
}

/*.close {*/
/*  float: right;*/
/*  font-size: 24px;*/
/*  font-weight: bold;*/
/*  cursor: pointer;*/
/*}*/

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .5rem;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
}

.close {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}


body.light-theme .fee-edit-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  border: 1px solid #D1D1D6;
}
body.dark-theme .fee-edit-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  border: 1px solid transparent;
}

body.light-theme .fee-edit-controls input {
  width: 50%;
  text-align: center;
  margin: 0px;
  border: none;
}
body.dark-theme .fee-edit-controls input {
  width: 50%;
  text-align: center;
  margin: 0px;
  background: transparent;
  border: none;
  color: #f0f0f0;
}
 body.light-theme #decreaseFeeBtn, body.light-theme #increaseFeeBtn {
         background: white;
    color: #212121;
 }
 body.dark-theme #decreaseFeeBtn, body.dark-theme #increaseFeeBtn {
         background: transparent;
    color: #f0f0f0;
 }
.save-btn {
  background-color: #03624C;
  color: white;
  border: none;
  padding: 10px 15px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}


.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider.round {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 24px;
  transition: .4s;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.slider.round:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}
input:checked + .slider.round {
  background-color: #4caf50;
}
input:checked + .slider.round:before {
  transform: translateX(20px);
}


 .message {
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 15px;
      margin-bottom: 20px;
      display: block;
      transition: all 0.3s ease;
    }
    
    .message.success {
      background-color: #e6f9ed;
      color: #0f5132;
      border: 1px solid #b7e4c7;
    }
    
    .message.error {
      background-color: #fde8e8;
      color: #842029;
      border: 1px solid #f5c2c7;
    }
    
    .hidden {
      display: none;
    }
    
    /**/
    .custom-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 15px 20px;
    border-radius: 8px;
    /*color: #fff;*/
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.custom-toast.success {
    
    background-color: #F0FDF4;
    border:1px solid #BBF7D0;
    color: #065F46;
}

.custom-toast.error {
    background-color: #FEF2F2;
    border:1px solid #FECACA;
    color: #B91C1C;
}

.custom-toast.warning {
    background-color: #ffc107;
    color: #212529;
}

.custom-toast.info {
    background-color: #17a2b8;
}
/**/
.spacer1rem {
    height: 1rem;
}

.spacer4rem {
    height: 2rem;
}