body{
  background: linear-gradient(90deg, #f87b1511 0%, #0069d911 100%);
  -webkit-backdrop-filter: blur(18px);
}
.highlight {
background: linear-gradient(90deg, #f87b15 0%, #0069d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-ls-orange {
  background-color: #f87c15;
  color: #fff;
  border: none;
}

.btn-ls-orange:hover,
.btn-ls-orange:active,
.btn-ls-orange.active {
  background-color: #9f4c08;
  color: #fff;
}

/* Orange - Outline */
.btn-ls-orange-outline {
  background-color: transparent;
  color: #f87c15;
  border: 1px solid #f87c15;
}

.btn-ls-orange-outline:hover,
.btn-ls-orange-outline:active,
.btn-ls-orange-outline.active {
  background-color: #9f4c08;
  color: #fff;
}

/* Blue - Solid */
.btn-ls-blue {
  background-color: #0b71ac;
  color: #fff;
  border: none;
}

.btn-ls-blue:hover,
.btn-ls-blue:active,
.btn-ls-blue.active {
  background-color: #0b6092;
  color: #fff;
}

/* Blue - Outline */
.btn-ls-blue-outline {
  background-color: transparent;
  color: #0b71ac;
  border: 1px solid #0b71ac;
}

.btn-ls-blue-outline:hover,
.btn-ls-blue-outline:active,
.btn-ls-blue-outline.active {
  background-color: #0b6092;
  color: #fff;
}

/* Purple - Solid */
.btn-ls-purple {
  background-color: #2e1c60;
  color: #fff;
  border: none;
}

.btn-ls-purple:hover,
.btn-ls-purple:active,
.btn-ls-purple.active {
  background-color: #200862;
  color: #fff;
}

/* Purple - Outline */
.btn-ls-purple-outline {
  background-color: transparent;
  color: #2e1c60;
  border: 1px solid #2e1c60;
}

.btn-ls-purple-outline:hover,
.btn-ls-purple-outline:active,
.btn-ls-purple-outline.active {
  background-color: #200862;
  color: #fff;
}

/* Dark - Solid */
.btn-ls-dark {
  background-color: #081d20;
  color: #fff;
  border: none;
}

.btn-ls-dark:hover,
.btn-ls-dark:active,
.btn-ls-dark.active {
  background-color: #021c20;
  color: #fff;
}

/* Dark - Outline */
.btn-ls-dark-outline {
  background-color: transparent;
  color: #081d20;
  border: 1px solid #081d20;
}

.btn-ls-dark-outline:hover,
.btn-ls-dark-outline:active,
.btn-ls-dark-outline.active {
  background-color: #021c20;
  color: #fff;
}


/* Gender-based Text Colors */
.ls-orange {
  color: #f87c15 !important;
}

.ls-blue {
  color: #0b71ac !important;
}
.ls-purple{
  color: #2e1c60;
}
.fullLength{
  height: 80dvh;
}
.error-message{
  color: red;
}

.custom-hover:hover {
  color: #FF5733; /* Custom color on hover */
  text-decoration: underline;
}
.scrollScreen {
  max-height: 600px;
  /* Adjust height as needed */
  overflow-y: auto;
  /* Enables scrolling */
  border: 1px solid #ccc;
  /* Optional styling */
  padding: 10px;
  /* Optional padding */
}
 /* Full-screen loading spinner with overlay */
 #loadingSpinner {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; /* Make sure it's on top of all elements */
}

/* Pulse animation for the spinner */
.spinner-border {
  animation: pulse 1.5s infinite ease-in-out;
  width: 70px; /* Adjust the size of the spinner */
  height: 70px;
  position: relative;
}

@keyframes pulse {
  0% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.2);
      opacity: 0.8;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

/* Style for the image inside the spinner */
.spinner-border img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; /* Adjust the size of the logo */
  height: 30px;
}

/* Full-screen background blur effect */
#loadingSpinnerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* Semi-transparent white overlay */
  backdrop-filter: blur(10px); /* Apply blur to the background */
  z-index: 9998; /* Overlay should be just under the spinner */
  pointer-events: none; /* Disable interaction */
}
.loading-container {
    height: 100dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    position: absolute;
    background-color: #ffffff;
    z-index: 1000;
    overflow: hidden;
  }

  .icon-container {
    animation: slide-in 1s ease-in-out, bounce 1.5s ease-out 1s forwards, exit 1s ease-in-out 3s forwards;
  }

  .superman-icon {
    width: 120px;
    animation: spin 1.5s ease-in-out infinite;
    /* Subtle spin animation */
  }
  

  .loading-text {
    font-size: clamp(8px, 4vw, 14px);
    color: #333;
    margin-top: 30px;
    opacity: 0;
    animation: fade-in-text 1s ease-out 0.5s forwards;
  }

  .content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
  }



  /* Keyframe Animations */
  @keyframes slide-in {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes bounce {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }

    100% {
      transform: translateY(0);
    }
  }

  @keyframes fade-in-text {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes exit {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    100% {
      transform: translateY(-100%);
      opacity: 0;
    }
  }
  /* --- Navbar Container --- */
.navbar {
  background: linear-gradient(to right, rgba(245, 123, 0, 0.15), rgba(0, 166, 255, 0.15));
  padding: 8px 12px;
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(4px);
}

/* --- Logo --- */
.navbar-brand img {
  width: 100%;
  min-width: 60px;
  max-width: 120px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.04);
}

/* --- Navigation Links --- */
.nav-link {
  color: #0b6092;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.nav-link:hover {
  color: #2e1c60;
}

/* --- Active Link Styling --- */
.nav-link.active {
  color: #f87c15 !important;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
}

/* --- Toggler --- */
.navbar-toggler {
  border: none !important;
  background: none !important;
  padding: 5px;
  color: #333;
  transition: transform 0.3s ease;
}

.navbar-toggler .fa-bars {
  transition: transform 0.3s ease;
}

/* Rotate the hamburger icon when navbar is open */
.navbar-toggler:not(.collapsed) .fa-bars {
  transform: rotate(90deg);
}

/* --- Responsive Adjustment --- */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 16px;
  }
}


  /* Custom Footer */
.custom-footer {
  background: linear-gradient(to right, rgba(245, 123, 0, 0.15), rgba(0, 166, 255, 0.15));
  padding: clamp(15px, 3vw, 30px) 0; /* Vertical padding: adjusts with screen size */
  font-size: clamp(10px, 2.5vw, 14px); /* Font size: adjusts fluidly */
  color: #333;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

/* Footer Title Image */
.footer-title img {
  width: 100%;
  min-width: 60px;
  max-width: 180px;
  height: auto;
  cursor: pointer;
}

/* Footer Title */
.footer-title {
  font-size: clamp(14px, 2vw, 18px); /* Responsive font size */
  font-weight: 600;
  color: #F57C00;
  margin-bottom: clamp(5px, 1.5vw, 15px); /* Dynamic margin-bottom */
}

/* Footer Links */
.footer-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-bottom: clamp(5px, 1vw, 12px); /* Dynamic spacing between links */
}

.footer-link:hover {
  color: #00A6FF;
  text-decoration: underline;
}

/* Inline Logo (Centered) */
.inline-logo {
  height: clamp(36px, 10vw, 46px); /* Responsive height for logo */
  width: auto;
  display: block;
  margin: 0 auto; /* Centering the logo */
}

/* Social Icons */
.footer-social-icon img {
  height: clamp(20px, 4vw, 28px); /* Responsive icon size */
  width: auto;
  transition: transform 0.3s ease;
}

.footer-social-icon img:hover {
  transform: scale(1.1);
}

/* Adjustments for container and padding */
.custom-footer .container {
  padding-left: clamp(10px, 2vw, 20px); /* Dynamic left padding */
  padding-right: clamp(10px, 2vw, 20px); /* Dynamic right padding */
}

/* Column Adjustments */
.custom-footer .col-md-4 {
  padding-right: clamp(10px, 2vw, 20px); /* Adjust right padding */
  padding-left: clamp(10px, 2vw, 20px); /* Adjust left padding */
}

/* Small Text Styling */
.custom-footer .small {
  font-size: clamp(0.75rem, 1.5vw, 1rem); /* Responsive small text */
}

/* Footer Links (Quick Links) */
.custom-footer .footer-title {
  font-size: clamp(12px, 2vw, 16px); /* Responsive footer link title */
  margin-bottom: clamp(5px, 1.5vw, 10px); /* Spacing between title and content */
}

.custom-footer .footer-link {
  font-size: clamp(0.875rem, 1.5vw, 1rem); /* Link font size */
  margin-bottom: clamp(4px, 1vw, 10px); /* Spacing between links */
}

/* Social Icon Container */
.custom-footer .footer-social-icon {
  display: flex;
  justify-content: space-evenly;
  gap: clamp(8px, 2vw, 12px); /* Space between social icons */
}

/* Footer Bottom Row */
.custom-footer .row.pt-2 {
  padding-top: clamp(1rem, 2vw, 1.5rem); /* Responsive padding for bottom row */
}

/* Bottom Links (e.g., Moderator, Area Manager) */
.custom-footer .footer-link {
  font-size: clamp(0.75rem, 2vw, 1rem); /* Bottom link font size */
  margin-right: clamp(8px, 2vw, 10px); /* Margin for spacing between bottom links */
}

.custom-footer .footer-link:last-child {
  margin-right: 0; /* No margin on the last link */
}


/* Modal Styling */
.modal-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background-color: #ff7e5f;
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-header h5 {
  font-size: clamp(12px, 4vw, 16px);
}

.modal-footer .btn {
    background-color: #ff7e5f;
    color: white;
}

.modal-footer .btn:hover {
    background-color: #feb47b;
}

.form {
  --bg-light: #efefef;
  --bg-dark: #707070;
  --clr: #58bc82;
  --clr-alpha: #9c9c9c60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
}

.form .input-span {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form input[type="text"],.form input[type="number"],.form input[type="email"],.form select,
.form input[type="password"] {
  border-radius: 0.5rem;
  padding: 1rem 0.75rem;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--clr-alpha);
  outline: 2px solid var(--bg-dark);
}

.form input[type="text"]:focus,
.form input[type="password"]:focus {
  outline: 2px solid var(--clr);
}

.label {
  align-self: flex-start;
  color: var(--clr);
  font-weight: 600;
}

.form .submit {
  padding: 1rem 0.75rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 3rem;
  background-color: var(--bg-dark);
  color: var(--bg-light);
  border: none;
  cursor: pointer;
  transition: all 300ms;
  font-weight: 600;
  font-size: 0.9rem;
}

.form .submit:hover {
  background-color: var(--clr);
  color: var(--bg-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form input {
  height: 40px;
  outline: none;
  border: 1px solid #cccccc;
  padding: 10px;
  font-size: 15px;
  border-radius: 8px;
  width: 100%;
}

form input[type="submit"] {
  background-color: rgba(17, 17, 226, 0.562);
  color: #ffffff;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

form input[type="submit"]:hover {
  background-color: rgba(17, 17, 226, 0.8);
}

form span {
  text-align: center;
  font-size: 16px;
  padding-top: 10px;
  color: #706b6b;
}

form span a {
  text-decoration: none;
  color: rgba(36, 36, 207, 0.671);
  font-weight: 500;
}

.input-container {
  position: relative;
  margin-bottom: 20px;
}

input,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}





  /* Accordion container */
  .accordion {
    border-radius: 1rem;
    overflow: hidden;
  }

  /* Accordion item */
  .accordion-item {
    border: 1px solid #ddd;
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
  }

  .accordion-item:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  }

  /* Accordion button */
  .accordion-button {
    font-weight: 600;
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background-color: transparent;
    border: none;
    box-shadow: none;
    transition: color 0.3s ease, font-weight 0.3s ease;
  }

  /* Remove default Bootstrap accordion button icon rotation */
  .accordion-button::after {
    filter: brightness(0.5);
    transition: transform 0.3s ease;
  }

  /* Rotate icon on expanded */
  .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    filter: brightness(0.8);
  }

  /* On focus or expanded */
  .accordion-button:focus,
  .accordion-button:not(.collapsed) {
    color: #007bff;
    font-weight: 700;
    outline: none;
  }

  /* Accordion body */
  .accordion-body {
    padding: 1rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.5;
  }