/* ===== ACCOUNT SETTINGS PAGE ===== */

.main-settings-wrapper {
  max-width: 576px;
  margin: 0 auto;
}

.settings-group {
  background: white;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

.settings-group-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: #888;
  text-transform: uppercase;
  padding: .5rem 1rem 0.5rem 1rem;
  letter-spacing: 0.5px;
}

.settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1rem;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
  border-bottom: 1px solid #f5f5f5;
}
.settings-item:last-child { border-bottom: none; }
.settings-item:active { background-color: #f0f0f0; }

.settings-label {
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.settings-label i { font-size: 1.2rem; color: #555; width: 24px; text-align: center; }

.settings-value { font-size: 0.8rem; color: #999; display: flex; align-items: center; gap: 6px; }

.danger-zone { color: #dc3545 !important; }
.danger-zone .settings-label i { color: #dc3545 !important; }

@media (min-width: 992px) {
  .main-settings-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .settings-group {
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    margin-bottom: 1rem;
  }
  .settings-group-title {
    font-size: 0.85rem;
    padding: .5rem 0.5rem 1rem 0;
  }
  .settings-item {
    padding: 1.25rem 1.5rem;
    transition: all 0.25s ease;
  }
  .settings-item:hover {
    background-color: #fcfcfc;
    padding-left: 1.8rem;
  }
}
