/* === CONTENITORE PRINCIPALE === */
#calcolatore-kit-container {
  background-color: #F5F9FC;
  padding: 30px;
  border-radius: 20px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Arial', sans-serif;
  color: #1B1B1B;
}

/* === TITOLI === */
#calcolatore-kit-form h2 {
  text-align: center;
  color: #2E96FE;
  margin-bottom: 25px;
}

/* === LABEL E INPUT === */
#calcolatore-kit-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

#calcolatore-kit-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #2E96FE;
  border-radius: 20px;
  background-color: #ffffff;
  color: #1B1B1B;
  font-size: 16px;
  box-sizing: border-box;
}

/* === BOTTONE === */
#calcola-btn {
  background-color: #2E96FE;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#calcola-btn:hover {
  background-color: #1b75d1;
}

/* === MAPPA === */
#map-container {
  margin-top: 20px;
}

#map {
  width: 100%;
  height: 300px;
  border: 2px solid #2E96FE;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* === GRAFICO === */
#grafico-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

#grafico-container canvas {
  width: 100% !important;
  height: auto !important;
  max-height: 400px;
  display: block;
}

/* === BUSSOLA E ORA === */
#ora-slider {
  width: 100%;
  accent-color: #2E96FE;
  margin-top: 10px;
}

.cardinale-label {
  font-size: 12px;
  color: #1B1B1B;
  text-align: center;
  pointer-events: none;
  z-index: 1000;
}

.emoji-astro {
  text-align: center;
  line-height: 1;
}

/* === RESPONSIVE MOBILE < 768px === */
@media (max-width: 768px) {
  #calcolatore-kit-container {
    padding: 20px;
    font-size: 15px;
  }

  #calcolatore-kit-form h2 {
    font-size: 20px;
  }

  #calcolatore-kit-form label {
    font-size: 14px;
    margin-bottom: 4px;
  }

  #calcolatore-kit-form select,
  #calcolatore-kit-form input[type="date"],
  #calcolatore-kit-form input[type="range"] {
    font-size: 14px;
    padding: 8px 10px;
  }

  #calcolatore-kit-form button {
    font-size: 14px;
    padding: 10px 16px;
  }

  /* Forza i blocchi affiancati a disporsi in colonna */
  #calcolatore-kit-form > div[style*="display: flex"] {
    flex-direction: column !important;
  }

  #grafico-container canvas {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
  }


  #grafico-container {
    padding-top: 40px; /* 👈 Spazio sopra il grafico */
  }
  
}




/* === NASCONDE IMMAGINI ILLUSTRATIVE SU MOBILE === */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}



@media (max-width: 768px) {
  canvas {
    max-width: 100% !important;
  }

  .chartjs-render-monitor {
    margin: 0 auto;
  }

  .chartjs-datalabel {
    font-size: 11px !important;
  }
}


#pdf-preview {
  width: 100%;
  min-height: 800px;
  background: white;
}

