@font-face {
  font-family: "Lexend";
  src: url("https://media.arrivtrack.com/static/Lexend-Regular.ttf");
}

body {
  font-family: "Lexend", sans-serif;
  background: #ffffff;
  /* Pure white for light mode */
  color: #111827;
  transition: background-color 0.4s ease, color 0.4s ease;
  min-height: 100vh;
}

.hola{
  background-color: red;
}

body.dark {
  background: #0f0f0f;
  /* Consistent dark for dark mode */
  color: #ffffff;
}

.leaflet-routing-container {
  display: none !important;
}

#phoneMenuButton {
  transition: transform 0.5s ease;
}

#phoneMenuButton.rotate {
  transform: rotate(90deg);
}

#phoneMenuButton.rerotate {
  transform: rotate(-90deg);
}

.selects {
  height: 30px;
  border-radius: 5px;
  border-color: black;
  font-family: "Lexend";
  margin-bottom: 7px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: lightgray;
}

.selects-mobile {
  height: 120px;
  border-radius: 5px;
  border-color: black;
  font-family: "Lexend";
  margin-bottom: 7px;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
  font-size: 40px;
  background-color: lightgray;
}

.margins-right {
  margin-right: 15px;
}

.inputs {
  width: 50%;
  height: 30px;
  border-radius: 5px;
  border-color: black;
  font-family: "Lexend";
  margin-bottom: 7px;
  padding-left: 5px;
  padding-right: 5px;
}

.inputs-mobile {
  height: 100px;
  font-size: 40px;
}

.inputs-correct {
  margin-bottom: 0;
}

.inputs-really {
  margin-right: 7px;
}

.buttons-mobile {
  width: 100%;
  height: 120px;
  border-radius: 5px;
  border-color: rgb(255, 172, 28);
  font-family: "Lexend";
  font-size: 45px;
  margin-bottom: 7px;
  margin-right: 15px;
  padding: 4px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgb(255, 172, 28);
}

.buttons {
  width: 52.75%;
  height: 30px;
  border-radius: 5px;
  border-color: rgb(255, 172, 28);
  font-family: "Lexend";
  font-size: 14px;
  margin-bottom: 7px;
  padding: 4px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgb(255, 172, 28);
}


.prevent-select {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

.inputs-exlarge {
  width: 80%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}

/* Modern Cookie Consent Popup with Glassmorphism */
.cookie-consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 2rem;
  animation: slideUpFade 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUpFade {
  0% {
    transform: translateY(150%) scale(0.9);
    opacity: 0;
  }

  70% {
    transform: translateY(-10px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideDownFade {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(150%) scale(0.9);
    opacity: 0;
  }
}

.cookie-consent-popup.hiding {
  animation: slideDownFade 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.cookie-consent-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Glowing effect on container */
.cookie-consent-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 172, 28, 0.5) 50%,
      transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Dark mode styles with enhanced glassmorphism */
body.dark .cookie-consent-container {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 172, 28, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 4px 16px rgba(255, 172, 28, 0.15),
    inset 0 1px 0 rgba(255, 172, 28, 0.1);
}

.cookie-consent-container:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

body.dark .cookie-consent-container:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.7),
    0 6px 20px rgba(255, 172, 28, 0.2),
    inset 0 1px 0 rgba(255, 172, 28, 0.15);
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 300px;
}

.cookie-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  animation: cookieBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(255, 172, 28, 0.3));
}

@keyframes cookieBounce {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  25% {
    transform: translateY(-8px) rotate(0deg);
  }

  50% {
    transform: translateY(0) rotate(5deg);
  }

  75% {
    transform: translateY(-8px) rotate(0deg);
  }
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1f2937;
  font-family: "Lexend", sans-serif;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark .cookie-text h3 {
  background: linear-gradient(135deg, #ffffff 0%, #FFAC1C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  font-family: "Lexend", sans-serif;
}

body.dark .cookie-text p {
  color: #d1d5db;
}

.cookie-link {
  color: #FFAC1C;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  border-bottom: 2px solid rgba(255, 172, 28, 0.3);
  padding-bottom: 1px;
}

.cookie-link:hover {
  color: #ff8c00;
  border-bottom-color: #ff8c00;
  transform: translateY(-1px);
}

.cookie-accept-btn {
  background: linear-gradient(135deg, #FFAC1C 0%, #ff8c00 100%);
  color: #0f0f0f;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Lexend", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  white-space: nowrap;
  box-shadow:
    0 8px 20px rgba(255, 172, 28, 0.4),
    0 2px 8px rgba(255, 172, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

/* Shine effect on button */
.cookie-accept-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%);
  transition: left 0.5s ease;
}

.cookie-accept-btn:hover::before {
  left: 100%;
}

.cookie-accept-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 12px 28px rgba(255, 172, 28, 0.5),
    0 4px 12px rgba(255, 172, 28, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ff8c00 0%, #FFAC1C 100%);
}

.cookie-accept-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 4px 12px rgba(255, 172, 28, 0.4),
    0 2px 6px rgba(255, 172, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 3;
  animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .cookie-consent-popup {
    padding: 1rem;
  }

  .cookie-consent-container {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 20px;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-icon {
    font-size: 3rem;
  }

  .cookie-text h3 {
    font-size: 1.2rem;
  }

  .cookie-text p {
    font-size: 0.9rem;
  }

  .cookie-accept-btn {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 2rem;
  }
}

@media (max-width: 480px) {
  .cookie-consent-container {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .cookie-icon {
    font-size: 2.5rem;
  }

  .cookie-text h3 {
    font-size: 1.1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }
}

/* Old cookie popup - deprecated */
#cookiePopup.old-style {
  background-color: rgba(255, 172, 28);
  position: fixed;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  width: 100%;
  left: 0;
  box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
  font-family: "Lexend";
  text-align: justify;
  line-height: 1.8em;
  z-index: 16;
  transition: all 0.5s ease-in;
  bottom: 0.000000000001%;
}

#cookiePopup.old-style img {
  transform: translateZ(0);
  position: relative;
  margin: auto;
}

#cookiePopup.old-style p {
  text-align: center;
  margin: 1.4em 0;
  flex: 0.7;
}

#cookiePopup.old-style button {
  background-color: rgb(0, 0, 0);
  border: none;
  color: #ffffff;
  font-size: 1.2em;
  padding: 1em 1.4em;
  display: block;
  position: relative;
  margin: auto;
  border-radius: 5px;
  flex: 0.2;
  font-family: "Lexend";
}

#cookiePopup.old-style a {
  color: rgb(0, 0, 0);
}

.hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown Button */

/* The container <div> - needed to position the dropdown content */

.inputs-exlarge-mobile {
  width: 90%;
  font-size: 40px;
  padding: 20px;
  text-align: center;
}

.select-side {
  width: 60%;
  flex: 0.7;
  padding-right: 0;
}

/* Change the background color of the dropdown button when the dropdown content is shown */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.glass-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(255, 172, 28, 0.9);
  border-bottom: 1px solid rgba(200, 200, 200, 0.2);
  z-index: 10000;
  transition: box-shadow 0.3s ease, background-color 0.4s ease;
  display: flex;
  align-items: center;
}

.glass-navbar.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9)
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#map {
  width: 75%;
  height: 100%;
  position: absolute;
  right: 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: inherit;
}

body.dark .logo {
  color: orange;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #61605e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #61605e;
}

.nav-links a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.light-modes-button {
  background-color: transparent;
  border: none;
}

.light-modes-button-img {
  width: 24px;
  height: 24px;
}

#dark-mode-toggle {
  cursor: pointer;
  transition: color 0.3s ease;
}

#dark-mode-toggle:hover {
  color: #61605e
}

body.dark .glass-navbar {
  background: rgba(18, 18, 18, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark .glass-navbar.scrolled {
  background: rgba(18, 18, 18, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

body.dark .nav-links a {
  color: #ccc;
}

body.dark .nav-links a:hover {
  color: #61605e
}

body.dark .nav-links a::before {
  background-color: #61605e;
}

body.dark #dark-mode-toggle:hover {
  color: #ccc;
}

::-webkit-scrollbar {
  display: none;
}

.home-headers {
  justify-content: center;
  color: white;
}

.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-content {
  display: block
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  width: max-content;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  backdrop-filter: blur(12px);
}

.dropdown-content::before {
  content: '';
  position: absolute;

}

body.dark .dropdown-content {
  background: rgba(18, 18, 18, 0.75);
}

.dropdown-content li {
  padding: 10px;
  white-space: nowrap;
}

.card-wrappers {
  border: 1px solid orange;
  border-radius: 5px;
  padding: 0;
}

.dropdown-content li:hover {
  background: rgba(255, 172, 28, 0.9)
}

body.dark .dropdown-content li:hover {
  background: rgba(46, 41, 41, 0.9);
  color: #111827;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 7px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: rgba(18, 18, 18, 0.75);
  border-radius: 2px;
}

body.dark .hamburger span {
  background-color: rgba(255, 255, 255, 0.9);
}

@media(max-width:900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 101%;
    right: 0;
    width: 100%;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.9);
    height: 100vh;
    padding: 20px;
    gap: 20px;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    z-index: 9999;
    text-align: center;
  }

  body.dark .nav-links {
    background-color: rgba(18, 18, 18, 0.9);
  }

  .hamburger {
    display: flex;
    justify-content: center;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
  }
}


:root {
  --accent: #f57c00;
  --accent-dark: #e65100;
  --bg-light: #fefcf9;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

/* Full screen wrapper */
.login-wrapper {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Neutral, low-chroma light background so orange remains the primary accent */
  background: radial-gradient(circle at 20% 30%, #f3f4f6, #e5e7eb);
  overflow: hidden;
  position: relative;
  margin-left: -15px;
}



body.dark .login-wrapper {
  /* Neutral dark background with subtle depth */
  background: radial-gradient(circle at 20% 30%, #111827, #020617);
  color: white;
}


/* Subtle moving gradient overlay */
.background-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #fff3e0, #ffe0b2, #fff3e0);
  animation: rotate 40s linear infinite;
  z-index: 0;
  opacity: 0.2;
  filter: blur(80px);
}

body.dark

/* Subtle moving gradient overlay */
.background-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #3b3b3a, #222221, #3b3b3a);
  animation: rotate 40s linear infinite;
  z-index: 0;
  opacity: 0.2;
  filter: blur(80px);
}

@keyframes rotate {
  to {
    transform: rotate(1turn);
  }
}

/* Login card */
.login-card {
  position: relative;
  z-index: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.logo-area {
  text-align: center;
  margin-bottom: 20px;
}

.logo-area img {
  width: 60px;
}

/* Title */
#login-title {
  font-size: 24px;
  font-weight: 600;
  color: #3e2723;
  text-align: center;
  margin-bottom: 25px;
}

body.dark #login-title {
  font-size: 24px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 25px;
}

/* Form step */
.form-step {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #5d4037;
  font-weight: 500;
}

body.dark label {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd0c0;
  border-radius: 8px;
  font-size: 15px;
  background: #fffaf5;
  transition: all 0.2s ease;
  font-family: "Lexend", sans-serif
}

select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd0c0;
  border-radius: 8px;
  font-size: 15px;
  background: #fffaf5;
  color: #111827;
  transition: all 0.2s ease;
  font-family: "Lexend", sans-serif
}

/* Select options light mode */
select option {
  background-color: #ffffff;
  color: #111827;
  padding: 8px;
}

/* Dark mode select styling */
body.dark select {
  background-color: #1f2937 !important;
  border-color: #374151 !important;
  color: #f3f4f6 !important;
  color-scheme: dark;
}

body.dark select option {
  background-color: #1f2937 !important;
  color: #f9fafb !important;
  padding: 8px;
}

body.dark select:focus {
  background-color: #111827 !important;
  border-color: #FFAC1C !important;
  box-shadow: 0 0 0 3px rgba(255, 172, 28, 0.35) !important;
  color-scheme: dark;
}

input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.15);
}

/* Buttons */
.prev-button,
.next-button,
.login-button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Lexend";
}

.next-button:hover,
.login-button:hover {
  background: var(--accent-dark);
}

.form-errors {
  color: #b71c1c;
  background: #ffebee;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 10px;
}

/* Footer */
.login-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
}

.login-footer a {
  color: var(--accent);
  text-decoration: none;
}

body.dark .login-footer a {
  color: white;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

.top-margins {
  margin-top: 7px;
}

.google-button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: white;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Lexend";
}

#parent-bottom-students {
  display: block;
  position: absolute;
  width: 25%;
  bottom: 1%;
  left: 0;
  border-top: 2px orange dashed;
}

body.dark #parent-bottom-students {
  border-top: 2px white dashed;
}

.dashboard-data-pane {
  width: 25%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, #fff3e0, #ffe0b2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  left: 0;
  color: inherit;
}

body.dark .dashboard-data-pane {
  background: black;
}

.clear-selects {
  background: transparent;
  color: inherit;
  padding: 0;
  border: none;
  margin: none;
}

.dashboard-top-title {
  display: block;
  position: absolute;
  width: 100%;
  top: 2%;
  left: 0;
}

#settings-left {
  width: 30%;
  position: absolute;
  left: 0;
  top: 25%;
  height: 75%;
  border-top: #111827 2px solid;
}

body.dark #settings-left {
  border-top: white 2px solid;
}


#settings-right {
  width: 70%;
  position: absolute;
  left: 30%;
  top: 25%;
  height: 75%;
  border-top: #111827 2px solid;
  overflow-y: auto;
}

body.dark #settings-right {
  border-top: white 2px solid;
}

@media(max-width:900px) {
  #settings-left {
    width: 100%;
    position: absolute;
    left: 0;
    top: 20%;
    height: 30%;
    border: 0;
    border-top: #111827 solid 2px;
    overflow-y: auto;
  }

  #settings-right {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    height: 50%;
    border-top: #111827 solid 2px;
    overflow-y: auto;
  }

  body.dark #settings-left {
    border-top: white solid 2px;
  }

  body.dark #settings-right {
    border-top: white solid 2px;
  }
}

.settings-item {
  height: 10%;
  width: 100%;
  padding: 10px;
}

.settings-item a {
  text-decoration: none;
  font-size: 20px;
  display: flex;
  text-align: center !important;
  justify-content: center;
  color: inherit;
}

@media (max-width:900px) {
  .settings-item {
    margin-top: 20px;
  }
}

.settings-editing {
  width: 100%;
  padding: 10px;
}

.form-a-control {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.form-a-control-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.settings-buttons {
  width: 100%;
  padding: 1px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Lexend";
  margin-left: 15px;
}

#code-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.code-digit {
  width: 40px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 5px;
}

.code-digit:focus {
  border-color: #111827;
  outline: none;
}

body.dark .code-digit:focus {
  border-color: orange;
  outline: none;
}

.logo-img {
  width: 200px;
  display: flex;
  align-items: center;
}

#mobile {
  width: 100%;
  position: absolute;
  top: 10%;
  display: none;
  z-index: 200000;
}

#mobile li {
  width: 100%;
  height: 10%;
}

.dashboard-bottom-pane {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 40px;
  align-items: center;
  justify-content: center;
}

@media(max-width:1115px) {
  #map {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
  }

  .dashboard-data-pane {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    height: 50%;
  }

  #status-text-text {
    text-align: center;
    margin: 0;
  }

  .margins {
    margin-left: 15px;
  }

  #eta-timer-text {
    text-align: center;
    margin: 0;
  }

  #notice-txt {
    text-align: center;
    margin: 0;
  }

  #parent-bottom-students {
    width: 100%;
  }
}

#li-div ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

.a-contrast {
  color: #111827;
  text-decoration: none;
}

body.dark .a-contrast {
  color: white;
}

.left-side-error-page-image {
  width: 60%;
  height: 90%;
  position: absolute;
  left: 0%;
}

.all-centered {
  width: "100%";
  height: "100%";
  justify-content: center;
  align-items: center;
  margin-left: -15px;
}

.progressbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
}

.progressbar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: orange;
  z-index: -1;
  transform: translateY(-50%);
  border-radius: 5px;
}

.progress {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  background-color: #111827;
  z-index: 10;
  border-radius: 5px;
  transition: slide-in 2s ease;
}

.progress-step {
  width: 25px;
  height: 25px;
  background-color: lightgray;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: relative;
  transition: background-color 0.3s ease;
}

.stripe-input {
  height: 30px;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
}

.dark .progress-step {
  width: 25px;
  height: 25px;
  background-color: lightgray;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: relative;
  transition: background-color 0.3s ease;
  border-color: white;
  border-width: 2px;
}

.progress-step.active {
  background-color: #111827;
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: 35px;
  font-size: 0.75rem;
  color: #333;
}

.dark .progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: 35px;
  font-size: 0.75rem;
  color: white;
}

.btns-group {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 0;
}

#card-errors {
  margin-top: 10px;
}

#sub-card {
  max-width: 600px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 28px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.switch input:checked+.slider {
  background-color: orange;
}

.switch input:checked+.slider:before {
  transform: translateX(22px);
}

.form-stable {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.select-plan {
  width: 49%;
  min-height: 30%;
  border-radius: 5px;
  border-width: 2px;
  border-color: black;
  background-color: darkorange;
  padding: 10px;
}

body.dark .select-plan {
  width: 49%;
  min-height: 30%;
  border-color: white;
  ;
  padding: 10px;
}