.salus-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin: 1rem auto;
  max-width: 700px;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.salus-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #3498db;
}

.salus-date-range {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.salus-date-range input {
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
}

.salus-chart-wrapper {
  position: relative;
  width: 70%;
  max-width: 350px; /* 🔥 limita maxima de dimensiune */
  aspect-ratio: 1 / 1; /* păstrează cercul perfect */
  margin: 0 auto; /* centrează pe card */
}

.salus-chart-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
}
   




