.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.auth-modal.hidden {
  display: none;
}

.auth-content {
  background: #2a2a2a !important;
  border-radius: 8px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  min-width: 350px;
  color: white;
  box-sizing: border-box;
}

.auth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.auth-header h2 {
  margin: 0;
  color: #f97316;
}

.auth-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #404040;
}

.auth-tab {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.auth-tab.active {
  color: #f97316;
  border-bottom-color: #f97316;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form input {
  padding: 0.75rem !important;
  border: 1px solid #404040 !important;
  border-radius: 4px !important;
  background: #1a1a1a !important;
  color: white !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.auth-form input:focus {
  outline: none;
  border-color: #f97316;
}

.location-row {
  display: flex;
  gap: 0.5rem;
}

.auth-submit {
  padding: 0.75rem;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.auth-submit:hover {
  background: #ea580c;
}

.auth-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}