.charging-station.dark-mode {
  background-color: #121212;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.station-info {
  text-align: center;
  margin-top: 30px; /* Spazio sotto il pulsante "Torna indietro" */
}

.evse-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  max-width: 900px; /* Imposta una larghezza massima per le card */
}

.start-charge {
  margin-top: 20px;
}

.start-charge-btn {
  background-color: #555;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 200px;
  font-size: 1rem;
}

.start-charge-btn.active {
  background-color: #6200ea; /* Colore abilitato */
  cursor: pointer;
}

.start-charge-btn.active:hover {
  background-color: #7c00f5; /* Hover */
}

.start-charge-btn:disabled {
  background-color: #888;
  cursor: not-allowed;
}

.divider {
  margin-top: 50px; /* Spazio tra il pulsante e il contenuto */
  margin-bottom: 0;
  border: none;
  border-top: 2px solid #333; /* Colore del divider */
  width: 100%;
}

.warning-message {
  background-color: #ffcc00;
  color: black;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 60px;
}

.warning-icon {
  font-size: 2rem;
  margin-right: 15px;
}

.warning-message p {
  font-size: 0.75rem; /* Riduce il font a una dimensione più piccola */
}

.charging-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #121212; /* Dark mode background */
  color: white; /* Text color for dark mode */
}
body,
html {
  overflow-y: auto !important; /* Rendi scorribile la pagina se bloccata */
}

.timer-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px 0; /* Add some margin for spacing */
}

.charging-icon {
  font-size: 3rem; /* Icona più grande */
  position: absolute;
}

.timer {
  position: absolute;
  font-size: 24px;
}

.back-to-map {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
