:root {
--main: #254b82;
--light-purple: #f3e8ff;

}

body {
background: #eeeeee;
padding-top: 64px; /* navbar height */
}
/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.navbar-brand img {
  height: 44px;
}
.nav-link {
  font-weight: 500;
  padding: 8px 14px;
}

/* ===== NAV ACTIVE STATE ===== */
.nav-link {
  color: #333;
  position: relative;
}

.nav-link.active {
  color: var(--main) !important;
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 2px;
  background: var(--main);
  border-radius: 2px;
}



/* ===== FOOTER ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 14px 0;
  font-size: 14px;
}

/* Buttons */ 
.btn-primary { background: var(--main); border-color: var(--main); } 
.btn-primary:hover { background: #1e3a8a; border-color: #1e3a8a; }

html, body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* padding-top: 70px; */
}
main {
  flex: 1;
}


/* ===== MOBILE ===== */
/* mobile navbar height */
@media (max-width: 576px) {
  body {
    padding-top: 56px;
  }
}

/* ===== DYNAMIC AUTH NAVBAR BUTTONS ===== */
#authNavButtons {
  display: flex;
  align-items: center;
  gap: 10px;
}

#authNavButtons .navbar-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1;
}

#authNavButtons .btn {
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px; /* capsules/pills shape */
  padding: 8px 20px;
  line-height: 1.2;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#authNavButtons .btn-outline-primary {
  border: 1.5px solid #254b82;
  color: #254b82;
  background: transparent;
}

#authNavButtons .btn-outline-primary:hover {
  background: #254b82;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 75, 130, 0.25);
  transform: translateY(-1px);
}

#authNavButtons .btn-primary {
  background: #254b82;
  border: 1.5px solid #254b82;
  color: #fff;
}

#authNavButtons .btn-primary:hover {
  background: #1e3a8a;
  border-color: #1e3a8a;
  box-shadow: 0 4px 12px rgba(37, 75, 130, 0.35);
  transform: translateY(-1px);
}

#authNavButtons .btn-danger {
  background: #dc2626;
  border: 1.5px solid #dc2626;
  color: #fff;
}

#authNavButtons .btn-danger:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  transform: translateY(-1px);
}
