/* Header */
.app-header {
  background-color: #29C0BD;
}

.app-title {
  font-size: 50px;
  text-align: center;
  color: white;
  font-weight: bold;
  margin: 10px;
}

/* Sections */
.left-panel-section {
  margin-bottom: 12px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
}

.section-body {
  /* intentionally minimal; add spacing if desired */
}

/* Date range row */
.date-range-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 5px;
  gap: 8px;
    width: 100%;
}

/* Generic card styling used by control blocks */
.control-card {
  display: flex;
  align-items: center;

  border: 1px solid #999E9E;
  border-radius: 8px;

  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;

  width: 95%;
}

.control-card--stacked {
  flex-direction: column;
  align-items: stretch; /* for stacked rows */
}

/* Toggle rows */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
    flex-wrap: wrap;
}

.toggle-row .switch-lg {
    padding-left: 5rem;
}

/* Larger switch appearance */
.switch-lg .form-check-input {
  font-size: 30px; /* dbc.Switch uses Bootstrap; this is a pragmatic match to your input_style */
}

/* Near-time minutes */
.near-time-minutes-container {
  align-items: center;
  margin-top: 10px;
  gap: 8px;
}

.near-time-minutes-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
    flex-wrap: wrap;
}

.near-time-minutes-input-wrap {
  display: flex;
  justify-content: flex-end;
  min-width: 60px;
    padding-right: 15px;
}

.near-time-minutes-input {
  width: 55px;
  display: inline-block;
  padding: 6px 6px;
  font-size: 15px;

  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}

/* Remove number input spinners (broader coverage) */
.no-spinner input[type="number"]::-webkit-outer-spin-button,
.no-spinner input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.no-spinner input[type="number"] {
  -moz-appearance: textfield;
}

/* Load actions */
.load-actions {
  /* add layout rules here if you want */
}

.load-data-button {
  margin: 8px;
  font-size: 16px;
}

/* Toast positioning */
.toast-fixed {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 350px;
  z-index: 999;
}
