/* Bottom Sheet Modal Styles */
.bottom-sheet {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
}

.bottom-sheet[aria-hidden="true"] {
  display: none;
}

.bottom-sheet[aria-hidden="false"] .bottom-sheet-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet[aria-hidden="false"] .bottom-sheet-content {
  transform: translateY(0);
}

.bottom-sheet-content {
  position: relative;
  background: white;
  width: 100%;
  max-height: 50vh;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 1rem;
  overflow-y: auto;
  z-index: 10000;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin: 1rem 0;
}

ul li a {
  color: #0079d3;
  text-decoration: none;
  font-weight: 600;
}

ul li a:hover {
  text-decoration: underline;
}

/* 🔁 Mobile Styles */
@media (max-width: 768px) {

  .auth-form {
    display: none;
  }

  .auth-form.active {
    display: block;
  }
}