#settings-modal .dashboard-popup-content {
  background: #fff !important;
  color: #222 !important;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px #00c6ff22;
  padding: 2rem 1.5rem;
  min-width: 280px;
  max-width: 90vw;
  position: relative;
  text-align: center;
}
.settings-form {
  margin-top: 1.2rem;
}
.settings-label {
  margin-top: 1rem;
  display: block;
}
.settings-actions {
  margin-top: 1.2rem;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  background: linear-gradient(90deg,#00c6ff 0%,#ff00cc 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 2px 8px #00c6ff33, 0 0 12px #ff00cc33;
  transition: box-shadow .2s, transform .2s, background .2s;
  padding: 0 !important;
  margin: -1px !important;
  background: linear-gradient(90deg,#ff00cc 0%,#00c6ff 100%);
  box-shadow: 0 0 24px #00c6ff, 0 0 24px #ff00cc;
  transform: scale(1.05);
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.dashboard-popup {
  /* ...existing styles... */
}

/* Fixed Save Changes button at bottom of modal */
.fixed-bottom-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  background: rgba(255,255,255,0.97);
  padding: 0.8rem 0.5rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.07);
  border-top: 1px solid #eaeaea;
  z-index: 10000;
}
.minimal-btn.save-btn {
  background: #00c6ff;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 22px;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 2px 8px rgba(0,198,255,0.13);
  border: none;
  transition: background 0.2s;
  cursor: pointer;
}
.minimal-btn.save-btn:active {
  background: #0086ff;
}
.minimal-btn.cancel-btn {
  background: #eee;
  color: #333;
  border: 1px solid #ccc;
  margin-right: 0.7rem;
}
.minimal-btn {
  display: inline-block;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 22px;
  background: #00c6ff;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,198,255,0.08);
  transition: background 0.2s;
  cursor: pointer;
}
.minimal-btn:active {
  background: #0086ff;
}
/* Save Changes button row for account modal */
.save-btn-row {
  text-align: center;
  margin-top: 1.2rem;
}
/* Stylish Account Modal Design */
.dashboard-popup {
  background: rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.popup-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 2.2rem 1.5rem 7.2rem 1.5rem; /* extra bottom padding for button */
  max-width: 270px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  margin-bottom: 0;
  font-family: 'Poppins', Arial, sans-serif;
}
.account-picture-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}
.account-picture {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,198,255,0.09);
  border: 3px solid #00c6ff;
  margin-bottom: 0.7rem;
}
#account-picture {
  margin-top: 0.2rem;
  font-size: 0.95rem;
}
.popup-content label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  margin-top: 1.1rem;
  color: #0086ff;
  letter-spacing: 0.01em;
}
.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content input[type="tel"],
.popup-content input[type="password"],
.popup-content input[type="number"],
.popup-content input[type="time"] {
  width: 90%;
  min-width: 0;
  max-width: 220px;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #e0e7ef;
  background: #f7fbff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.popup-content input:focus {
  border-color: #00c6ff;
  outline: none;
}
.account-section {
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #f0f4fa;
}
.account-section:last-child {
  border-bottom: none;
}
.account-section h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0040a8;
  margin-bottom: 0.7rem;
  margin-top: 1.2rem;
}
.fixed-bottom-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.97);
  padding: 0.8rem 0.5rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.07);
  border-top: 1px solid #eaeaea;
  z-index: 10000;
}
.minimal-btn {
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 22px;
  background: #00c6ff;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,198,255,0.08);
  transition: background 0.2s;
}
.minimal-btn.cancel-btn {
  background: #eee;
  color: #333;
  border: 1px solid #ccc;
}
.minimal-btn:active {
  background: #0086ff;
}
/* Editable Account Modal */
#account-modal.dashboard-popup {
  display: none;
}
.account-picture-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}
.account-picture {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px #00c6ff44, 0 0 12px #ff00cc44;
  margin-bottom: 0.7rem;
}
#account-picture {
  margin-bottom: 0.7rem;
}
#account-form label {
  display: block;
  margin-top: 0.7rem;
  font-weight: 500;
  color: #0d3553;
}
#account-form input[type="text"],
#account-form input[type="email"],
#account-form input[type="tel"] {
  width: 100%;
  padding: 0.6rem 0.9rem;
  margin-top: 0.2rem;
  border-radius: 8px;
  border: 1px solid #e3e7ee;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.popup-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  justify-content: center;
}
#close-account-modal.action-btn {
  background: #eee;
  color: #222;
  border: 1px solid #ccc;
}
#close-account-modal.action-btn:hover {
  background: #ddd;
}
.dashboard-page .nav-menu li a:hover,
.dashboard-page .nav-menu li a:focus {
  background: linear-gradient(90deg, #00c6ff 0%, #ff00cc 100%);
  color: #fff;
  box-shadow: 0 0 8px #00c6ff44, 0 0 8px #ff00cc44;
}
.dashboard-page .nav-menu li a:active {
  background: #ff6b35;
  color: #fff;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 2.5rem;
}
.logo-img, .logo-img.neon-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 24px #00ff88, 0 0 8px #0099ff;
  background: #fff;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body {
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeInPage 1.1s cubic-bezier(.77,0,.18,1) forwards;
  padding-top: 80px;
}
@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
  border-radius: 4px;
}

.nav-links ul li a:hover {
  background: rgba(255,255,255,0.2);
  color: #ffd700;
}

.header {
	min-height: 100vh;
	width: 100%;  
	background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url('assets/Lagos-City.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: background-position;
}
@media (max-width: 700px) {
  .header {
    background-attachment: scroll;
  }
}
.nav-links ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li {
  display: inline-block;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 150px;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after{
   width: 100%;


}
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.text-box h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 18px;
  color: #fff;
}
.text-box p#typing-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffd700;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(10,20,60,0.18), 0 1px 0 #222;
  background: rgba(10,20,60,0.10);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-block;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 12px rgba(10,20,60,0.10);
  animation: fadeInText 1.2s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeInText {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  font-size: 1.13rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #00c6ff 0%, #ff00cc 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 24px #00c6ff33, 0 0 12px #ff00cc33;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px #0002;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
  outline: none;
  text-decoration: none;
}
.hero-btn:hover, .hero-btn:focus {
  background: linear-gradient(90deg, #ff00cc 0%, #00c6ff 100%);
  box-shadow: 0 0 24px #00c6ff, 0 0 24px #ff00cc;
  color: #fff;
  transform: translateY(-2px) scale(1.07);
  cursor: pointer;
}

/* Menu icon styles */
.open-menu, .close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

/* Modern menu icon: use fa-solid fa-bars-staggered for open, fa-solid fa-xmark for close */
.open-menu i {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.open-menu i::before {
  content: "\f142"; /* ellipsis-v */
}
.close-menu i {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.close-menu i::before {
  content: "\f057"; /* circle-xmark */
}

/* Show menu icon on mobile */
@media (max-width: 700px) {
  .open-menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  .close-menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 11;
  }
  .nav-links { display:none; flex-direction:column; align-items:stretch; position:absolute; top:0; right:0; width:230px; height:100vh; padding:70px 14px 20px; z-index:9; transition:right .45s cubic-bezier(.77,0,.18,1), opacity .4s; background:linear-gradient(155deg,rgba(255,255,255,0.95) 0%,rgba(248,250,255,0.92) 55%,rgba(244,248,255,0.92) 100%) !important; -webkit-backdrop-filter:blur(28px) saturate(185%); backdrop-filter:blur(28px) saturate(185%); box-shadow:0 8px 26px -10px rgba(15,25,40,0.25),0 4px 14px -8px rgba(15,25,40,0.16),0 0 0 1px rgba(255,255,255,0.65) inset; border-left:1px solid rgba(0,0,0,0.06); overflow-y:auto; }
  .nav-links.active {
    display: flex;
  }
  .nav-links ul {
    flex-direction: column;
    width: 100%;
    text-align: right;
  }
  .nav-links ul li {
    width: 100%;
    padding: 0;
    text-align: right;
  }
  .nav-links ul li a { display:block; padding:12px 14px 12px 16px; width:100%; text-align:left; font-size:.8rem; font-weight:500; letter-spacing:.45px; color:#143743; border:1px solid rgba(0,0,0,0.06); background:linear-gradient(90deg,rgba(255,255,255,0.55),rgba(255,255,255,0.35)); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); border-radius:10px; position:relative; box-shadow:0 1px 3px -1px rgba(15,25,40,0.24); margin-bottom:.5rem; line-height:1.25; transition:background .28s, color .28s, box-shadow .32s, border-color .28s; }
  .nav-links ul li a:focus-visible { outline:2px solid #00a4d6; outline-offset:2px; }
  .nav-links ul li a:hover { background:linear-gradient(90deg,#00c6ff33,#ff00cc33); color:#05202c; box-shadow:0 4px 12px -4px rgba(15,25,40,0.3); border-color:rgba(0,0,0,0.12); }
  .nav-links ul li a:active { background:linear-gradient(90deg,#00c6ff55,#ff00cc55); color:#02161d; }
  .text-box {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    width: 98%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
  }
  .text-box h1 {
    font-size: 20px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: absolute;
    background: #f44336;
    height: 100vh;
    width: 200px;
    top: 0;
    right: 0%;
    text-align: left;
    z-index: 2;
  }

  nav.fa{ display: block;
      color: fff;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
}
  .nav-links {
    padding-top: 0 !important;
    justify-content: flex-start;
  }
  .nav-links ul {
    align-items: flex-start !important;
    margin-top: 0 !important;
  }
  .nav-links ul li {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .nav-links ul li a {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    margin: 6px 0;
    padding: 10px 18px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(10,20,60,0.08);
  }
  .nav-links ul li a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffd700;
  }
  .nav-links {
    left: 0;
    right: auto;
    align-items: flex-start;
    text-align: left;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .nav-links ul {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .nav-links ul li {
    text-align: left;
    width: 100%;
  }
  .nav-links ul li a {
    text-align: left;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 700px) {
  .nav-links {
    left: -220px;
    right: auto;
    opacity: 0;
    pointer-events: none;
    transition: left 0.7s cubic-bezier(.77,0,.18,1), opacity 0.5s;
    box-shadow: 4px 0 24px rgba(10,20,60,0.12);
  }
  .nav-links.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 701px) {
  .text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #typing-text {
    margin-bottom: 24px;
    display: block;
  }
  .hero-btn {
    margin-top: 0;
    align-self: center;
    position: relative;
    z-index: 1;
  }
}

/* --- Neon DrivA Login Customizations --- */
.logo-img.neon-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 50%;
  box-shadow: 0 0 24px #00ff88, 0 0 8px #0099ff;
  background: #fff;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body.login-bg {
  background: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url('assets/Lagos-City.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 10;
}
.login-card {
  margin: 0 auto;
}
@media (max-width: 700px) {
  .login-card {
    margin: 0 8px;
  }
}

/* Page transition effect */
.fade-out {
  animation: fadeOutPage 0.25s forwards;
}
/* ================= DRIVER DASHBOARD ================= */
.dashboard-page {
  background: linear-gradient(120deg, #f7f8fa 60%, #e3f0ff 100%);
  min-height: 100vh;
}
.dashboard-main {
  max-width: 900px;
  margin: 5.5rem auto 3rem auto;
  padding: 0 1.1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px -8px #00c6ff22, 0 0 0 1px #e3e7ee inset;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.55;
}
.dashboard-main h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 2.2rem 0 1.8rem 0;
  color: #0d3553;
  text-align: center;
}
.dashboard-section {
  background: #f7fafd;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00c6ff11;
  margin-bottom: 2.2rem;
  padding: 2rem 1.5rem 1.2rem 1.5rem;
}
.dashboard-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: #00c6ff;
}
#driver-profile p,
#driver-earnings p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #222;
}
#driver-trips,
#driver-notifications {
  list-style: none;
  padding: 0;
  margin: 0;
}
#driver-trips li,
#driver-notifications li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px -4px #00c6ff22;
  margin-bottom: 0.7rem;
  padding: 0.7rem 1rem;
  font-size: 0.98rem;
  color: #444;
}
.dashboard-actions .actions-list {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.action-btn {
  background: linear-gradient(90deg, #00c6ff 0%, #ff00cc 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 12px #00c6ff22;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-bottom: 0.7rem;
}
.action-btn:hover, .action-btn:focus {
  background: linear-gradient(90deg, #ff00cc 0%, #00c6ff 100%);
  box-shadow: 0 0 16px #00c6ff44, 0 0 16px #ff00cc44;
  transform: scale(1.05);
}

/* Side Menu */
.side-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 270px;
  background: #fff;
  box-shadow: 4px 0 24px rgba(10,20,60,0.18);
  z-index: 2000;
  padding: 0;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  animation: slideInMenu 0.35s cubic-bezier(.77,0,.18,1);
}
.side-menu-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.2rem 0.7rem 1.2rem;
  border-bottom: 1px solid #e3e7ee;
}
.side-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 8px #00c6ff, 0 0 8px #ff00cc;
}
.side-menu-list {
  list-style: none;
  padding: 1.2rem 0.7rem;
  margin: 0;
}
.side-menu-list li {
  margin-bottom: 1.1rem;
}
.side-menu-list a {
  color: #0d3553;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.side-menu-list a:hover {
  background: linear-gradient(90deg, #00c6ff22, #ff00cc22);
  color: #00c6ff;
}
.side-menu-open .side-menu {
  display: block;
}
@keyframes slideInMenu {
  from { left: -270px; opacity: 0; }
  to { left: 0; opacity: 1; }
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #00c6ff 0%, #ff00cc 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 62px;
  z-index: 1500;
  box-shadow: 0 -2px 12px #00c6ff22;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.bottom-nav-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.bottom-nav-btn:hover, .bottom-nav-btn:focus {
  background: rgba(255,255,255,0.12);
  color: #ffd700;
}
.bottom-nav-btn span {
  font-size: 0.8rem;
  margin-top: 2px;
}

/* Popup Modal */
.dashboard-popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,20,40,0.55);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.dashboard-popup .popup-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #00c6ff33, 0 0 12px #ff00cc33;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  min-width: 260px;
  max-width: 90vw;
  position: relative;
}
.dashboard-popup .popup-content button {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #222;
  font-size: 1.3rem;
  cursor: pointer;
}
.dashboard-popup .popup-content button:hover {
  color: #ff6b35;
}
.popup-open .dashboard-popup {
  display: flex;
}
@media (max-width: 700px) {
  .dashboard-main {
    margin: 2.2rem auto 1.2rem auto;
    padding: 0 0.4rem;
    border-radius: 10px;
  }
  .dashboard-section {
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    border-radius: 8px;
  }
  .dashboard-main h1 {
    font-size: 1.3rem;
    margin: 1.2rem 0 1rem 0;
  }
  .dashboard-page .main-nav {
    position: static;
    box-shadow: none;
    background: linear-gradient(90deg, #00c6ff 0%, #ff00cc 100%);
    border-radius: 0 0 18px 18px;
    padding: 1rem 0.7rem 0.7rem 0.7rem;
  }
  .dashboard-page .main-nav .logo-home img {
    width: 38px;
    height: 38px;
    box-shadow: 0 0 8px #00c6ff, 0 0 8px #ff00cc;
  }
  .dashboard-page .nav-menu {
    gap: 0.7rem;
    padding: 0;
  }
  .dashboard-page .nav-menu li a {
    font-size: 0.85rem;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    box-shadow: none;
  }
  .dashboard-page .nav-menu li a.is-active {
    background: #ff6b35;
    color: #fff;
  }
}
@keyframes fadeOutPage {
  to {
    opacity: 0;
    transform: scale(0.98);
    filter: blur(2px);
  }
}
.facebook-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%233b5998' viewBox='0 0 24 24'%3e%3cpath d='M22.675 0h-21.35C.595 0 0 .592 0 1.326v21.348C0 23.408.595 24 1.325 24h11.495v-9.294H9.692v-3.622h3.128V8.413c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.797.143v3.24l-1.918.001c-1.504 0-1.797.715-1.797 1.763v2.313h3.587l-.467 3.622h-3.12V24h6.116C23.406 24 24 23.408 24 22.674V1.326C24 .592 23.406 0 22.675 0'/%3e%3c/svg%3e");
}

/* Responsive navigation menu for homepage */
.main-nav { position:fixed; top:0; left:0; right:0; z-index:1200; background:transparent; }
.logo-home {
  display: inline-block;
  margin-bottom: 0;
}
.logo-home img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 12px #00c6ff, 0 0 12px #ff00cc;
  object-fit: cover;
  background: #fff;
}
.menu-toggle {
  background: none;
  border: none;
  color: #222;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  margin-left: auto;
}
.nav-menu li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-menu li a:hover {
  background: #ff6b35;
  color: #fff;
}
@media (max-width: 800px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -220px;
    width: 200px;
    height: 100vh;
    background: rgba(10,20,60,0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 0 0;
    gap: 0.5rem;
    box-shadow: 4px 0 24px rgba(10,20,60,0.18);
    z-index: 100;
    transition: left 0.5s cubic-bezier(.77,0,.18,1);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li a {
    color: #fff;
    font-size: 0.85rem;
    width: 100%;
    padding: 12px 20px;
    border-radius: 0;
    background: none;
    text-align: left;
  }
}