/* Default (Light Mode) Variables */
:root {
  --background-color: #f6f8fa;
  --text-color: #000;
  --section-background: #fff;
  --section-border-radius: 8px;
}

/* Night Mode Variables */
body.night-mode {
  --background-color: #1b1f24;
  --text-color: #ddd;
  --section-background: #2d333b;
}

body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: var(--background-color);
  color: var(--text-color);
}

header, footer {
  text-align: center;
  margin-bottom: 20px;
}

header .theme-toggle {
  margin-top: 10px;
}

.prices, .strategy, .five-day-stats {
  background: var(--section-background);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--section-border-radius);
}

.coin, .coin-stats {
  margin: 10px 0;
}

.coin {
  display: flex;
  justify-content: space-between;
}

.coin .label {
  font-weight: bold;
}

.strategy {
  text-align: center;
}

#strategy-signal {
  font-weight: bold;
  font-size: 1.5em;
}

.five-day-stats .coin-stats h3 {
  margin-top: 0;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.five-day-stats p {
  margin: 5px 0;
}

#eth-buy-indicator {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 15px;
}

.stats-controls {
  margin-bottom: 20px;
}

.stats-controls label {
  margin-right: 10px;
}

.custom-date-picker {
  display: inline-block;
  margin-left: 20px;
}

label[for="theme-switch"] {
  font-size: 0.9em;
  margin-right: 5px;
}