/* ============================================================================
 * Settings Page Styles
 * ============================================================================ */

/* Ensure HTML and body take full width/height */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.settings-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.settings-container {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================================
 * Settings Header
 * ============================================================================ */
.settings-header {
  margin-bottom: 32px;
  text-align: center;
}

.settings-title {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
}

.settings-subtitle {
  margin: 0;
  font-size: 1rem;
  color: #6c757d;
}

/* ============================================================================
 * Settings Cards
 * ============================================================================ */
.settings-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings-card {
  padding: 0;
  overflow: hidden;
}

.settings-card-header {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 16px;
}

.settings-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.settings-card-info {
  flex: 1;
}

.settings-card-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

.settings-card-desc {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

/* Logout card special styling */
.settings-card-logout {
  border-left: 4px solid #e74c3c;
}

/* ============================================================================
 * Responsive
 * ============================================================================ */
@media (max-width: 480px) {
  .settings-container {
    padding: 16px;
  }

  .settings-title {
    font-size: 1.5rem;
  }

  .settings-card-header {
    padding: 16px;
    flex-wrap: wrap;
  }

  .settings-card-header .lc-btn {
    width: 100%;
    margin-top: 12px;
  }
}
