/* =========================
Login Modal Overlay
========================= */
.login-modal {
  display: none;              /* hidden by default */
  position: fixed;
  inset: 0;                   /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow-y: auto;
}

/* =========================
Modal Box
========================= */
.login-modal-content {
  position: relative;         /* for close button positioning */
  background: #fff;
  width: 350px;
  max-width: 90%;             /* responsive on smaller screens */
  padding: 30px;
  margin: 10% auto;           /* center vertically with some top spacing */
  border-radius: 12px;
  text-align: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(0);   /* no need for translateY(-50%) if using margin-top */
}

/* =========================
Close Button
========================= */
.login-modal .close {
  position: absolute;
    top: 5px;
    right: 5px;
    font-size: 25px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-modal .close:hover {
    background: #eb230d;
    color: #fff;
}

/* =========================
Login Box (optional inner container)
========================= */
.login-box {
  background: #fff;
  width: 100%;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.login-box h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

/* =========================
Google Login Button
========================= */
/* Google Login Button - Official Style */
.google-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 12px;
  height: 40px;
  border: 1px solid #dadce0;
  border-radius: 4px;          /* official radius */
  background: #fff;
  color: #3c4043;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s, background 0.2s;
  margin-top: 15px;
}

.google-login-btn:hover {
  background: #f5f5f5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.google-login-btn .google-icon {
  width: 18px;
  height: 18px;
}
.google-login-btn span {
  display: inline-block;
  vertical-align: middle;
}

/* =========================
Responsive Adjustments
========================= */
@media (max-width: 576px) {
  .login-modal-content {
    width: 90%;
    padding: 20px;
    margin: 20% auto;
  }

  .login-modal .close {
    top: 10px;
    right: 15px;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .google-login-btn {
    width: 100%;
    padding: 10px 0;
  }
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.feature-list li {
    display: block;          /* 🔑 force one item per line */
    width: 100%;             /* 🔑 prevent side-by-side */
    float: none;             /* 🔑 cancel theme float */
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-list small {
    display: block;          /* keeps description under title */
    opacity: 0.8;
    font-size: 12px;
}

