@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;300&display=swap");
body {
  background: #ffffff !important;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  min-height: 100vh;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
* {
  font-family: Montserrat, serif;
  font-style: normal;
  font-weight: 600;
}
.main-background-color {
  background: #ff7900;
}
.main-color {
  color: #ff7900;
}
.main-bg-back {
  background-image: url(/assets/cashtaskApp/images/main-back-image.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-bottom {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 3000;
  transform: translateZ(0); /* Forces GPU layer */
  will-change: transform; /* Hints browser to render early */
}

.nav-bottom a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-bottom a:hover,
.nav-bottom a.active {
  color: #1a73e8;
}
.nav-bottom a {
  padding: 5px 0;
}
.nav-bottom i {
  font-size: 1.2rem;
  margin-bottom: 3px;
}
.nav-bottom span {
  font-size: 0.7rem;
}
.spinner {
  height: 17px;
  width: 17px;
}
.main-spinner,
.spinner {
  animation: spin 1s linear infinite;
  border: 3.5px solid hsla(0, 0%, 100%, 0.394);
  border-radius: 50%;
  border-top-color: #ffffff;
}
.main-spinner {
  height: 50px;
  width: 50px;
}
.loader {
  animation: spin 2s linear infinite;
  border: 13px solid #ffffff;
  border-bottom-color: #4ecdc4;
  border-radius: 50%;
  height: 70px;
  width: 70px;
}
.blur-background {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}
.main-sub-back {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  width: 95%;
}
.main-sub-back,
.main-sub-back-white {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 0.7rem auto 0;
  position: relative;
}
.main-sub-back-white {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  padding: 0.25rem;
  width: 97%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
#message-box {
  z-index: 2700;
}
#toast-message {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.504);
}
.success-toast {
  background: #4ecdc4;
}
.error-toast {
  background: #ff6b6b;
}
.show-toast {
  opacity: 1 !important;
}
