/* ========================================
   ExpenseIQ — Settings Styles
   ======================================== */

.settings-section {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.settings-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-primary);
}
.settings-section-title svg { width: 18px; height: 18px; color: var(--accent-primary); }

.settings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.settings-row + .settings-row { border-top: 1px solid var(--glass-border); }

.settings-row-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.settings-row-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.4;
}
.settings-row-control {
  flex-shrink: 0;
}

.about-info {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 500;
}

.activity-log-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--glass-border);
  gap: 12px;
}
.activity-log-item:last-child { border-bottom: none; }
.activity-log-msg {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}
.activity-log-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 700;
}
