html {
  font-size: 13px;
  font-weight: 400;
  font-family: Inter,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.page-loading {
  margin: 0;
  height: 100%;
  overflow: hidden;
  transition: none !important;
}

.splash-screen {
  display: none;
}

.page-loading .splash-screen {
  position: absolute;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Inter, Helvetica, 'sans-serif';
  background-color: #fff;
}

.page-loading .splash-screen .loading-text {
  color: #99A1B7;
  margin-left: 1.25rem;
  font-size: 1.075rem;
  font-weight: 500;
}

html[data-bs-theme='dark'] .page-loading .splash-screen {
  background-color:#77E8D2;
  color: #ffffff;
}

.splash-screen .dark-logo {
  display: none;
}

.splash-screen .light-logo {
  display: block;
}

html[data-bs-theme='dark'] .splash-screen .light-logo {
  display: none;
}

html[data-bs-theme='dark'] .splash-screen .dark-logo {
  display: block;
}

.loader {
  width: 2rem;
  height: 2rem;
  border: 0.185rem solid #1B84FF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.65s linear infinite;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.loader-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}


.app-sidebar .menu .menu-item .menu-link.active {
  transition: color 0.2s ease;
  background-color: transparent !important;
  color: white !important;
}

[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link.active {
  transition: color 0.2s ease;
  background-color:rgb(248, 254, 255) !important;
  color:black !important;
  }


  [data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link.active .menu-title {
  color:rgb(0, 0, 0) !important;
}
[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link.active .menu-icon i {
  color: #A27070 !important;
}

[data-kt-app-layout="dark-sidebar"] .app-sidebar .menu .menu-item .menu-link .menu-title {
  color: #252323 !important;
}

.pagination-color {
    background-color: #1FD7FC;
    color: white; 
    transition: background-color 0.3s ease;
  }
  
  .pagination-color:hover {
    background-color: #1FD7FC; 
  }

  
  .number-color {
    color: White;
    background-color: #19fcf0; 
  }

  /* Import Google Font for a modern look */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.payment-page-background {
  background: linear-gradient(135deg, #e0f2f7 0%, #c8e6f0 100%); /* Soft blue gradient */
}

.payment-card {
  border-radius: 1.5rem; /* More rounded corners */
  max-width: 500px;
  margin: auto;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important; /* Deeper shadow */
  background-color: #fff;
}

.payment-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.payment-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.payment-input-group .payment-input-addon {
  background-color: #f8f9fa; /* Light background for addon */
  border-right: none;
  border-color: #ced4da;
  border-radius: 0.5rem 0 0 0.5rem; /* Match input border radius */
  color: #6c757d;
  font-weight: 600;
}

.payment-amount-input {
  border-left: none;
  border-radius: 0 0.5rem 0.5rem 0; /* Match addon border radius */
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  box-shadow: none !important; /* Remove default focus shadow */
  border-color: #ced4da; /* Default border color */
}

.payment-amount-input:focus {
  border-color: #007bff; /* Primary color on focus */
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important; /* Custom focus shadow */
}

.payment-pay-button {
  background-color: #1FD7FC; /* Primary blue */
  border-color: #1FD7FC;
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 0.75rem; /* More rounded button */
  transition: all 0.3s ease;
}

.payment-pay-button:hover:not(:disabled) {
  background-color: #1FD7FC; /* Darker blue on hover */
  border-color: #1FD7FC;
  transform: translateY(-2px); /* Slight lift on hover */
  box-shadow: 0 0.5rem 1rem rgba(0, 123, 255, 0.2);
}

.payment-pay-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.payment-cancel-button {
  font-size: 0.95rem;
  text-decoration: none;
  color: #6c757d !important;
}

.payment-cancel-button:hover {
  color: #495057 !important;
}

.payment-badges i {
  font-size: 1.8rem;
  color: #888;
  margin: 0 0.3rem;
}

.payment-badges .fa-lock {
    color: #28a745; /* Green for security lock */
}

.payment-sandbox-note {
  font-size: 0.85rem;
  color: #999;
}