@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: #ef6627;
  margin: 0;
  padding: 0;
  user-select: none;
  max-height: 100vh;
  max-width: 100vw;
}
@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: #ef6627;
}
.main-color {
  color: #e7300e;
}
.main-bg-back {
  background-image: url(/assets/cashtaskApp/images/main-back-image.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-bottom {
  background: #ef6627;
  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: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-bottom a:hover,
.nav-bottom a.active {
  color: white;
}
.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 {
  box-sizing: border-box;
  margin: 0.7rem auto 0 auto;
  width: 95%;
  border-radius: 10px;
  background: linear-gradient(180deg, #cd4a26, #e82525 99%);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
  border: 2px solid #ffa7a7;
  position: relative;
}
.main-sub-back-white {
  box-sizing: border-box;
  margin: 0.7rem auto 0 auto;
  width: 97%;
  padding: 0.25rem;
  border-radius: 0.25rem;
  background: linear-gradient(180deg, #fefdf8, #f1d7bc 99%);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
  border: 3px solid #fff;
  color: rgb(225, 17, 17);
  position: relative;

  /* color: #ffc080; */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
#message-box {
  z-index: 10000;
}
#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;
}
