/* Settings Navigation */

nav.flex a {
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Settings Form */
.settings-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box; /* Important for mobile */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.form-group label {
  font-weight: 500;
  color: #4a5568;
}

.form-group input {
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box; /* Important for mobile */
  background-color: white;
}

.form-group input:focus {
  outline: none;
  border-color: #2c5282;
  box-shadow: 0 0 0 2px rgba(44, 82, 130, 0.1);
}

/* Sign Out Button */
.sign-out-container {
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid #e2e8f0;
}

[type="submit"].text-gray {
  width: 100%;
  background: none;
  border: none;
  color: #e53e3e;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
}

/* Responsive adjustments */
@media (min-width: 640px) {
  .settings-form {
    max-width: 480px;
    margin: 0 auto;
  }

  .sign-out-container {
    max-width: 480px;
    margin: 2rem auto 0;
  }
}