/* --- Settings Modal Layout --- */
.settings-modal-card {
  width: 460px;
}

/* Custom Styled Dropdowns */
.settings-select-custom {
  padding: 8px 12px;
  border: 1px solid #F0E8F5;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: border-color 0.15s;
}

.settings-select-custom:focus {
  border-color: var(--lilac);
}

/* Screensaver row specific alignment */
.settings-row-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Combined Export Data Section --- */
.export-section-container {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed #F0E8F5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.export-left-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.export-sub-label {
  margin-bottom: 2px;
}

/* Dataset Checkbox Toggles */
.export-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding-left: 2px;
}

.export-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.export-checkbox-label input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
}

/* Date Range Nest */
.export-range-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.export-range-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
}

.export-select-compact {
  width: fit-content;
  padding: 5px 10px;
}

/* Action Button */
.export-action-btn {
  width: 100px;
  background: var(--lilac);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s;
}

.export-action-btn:hover {
  background: #a389bd; /* Slightly darker shift for interactive feedback */
}