.fusion-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;
}

.fusion-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #333;
}

.fusion-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.fusion-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  font-size: 0.95rem;
  color: #555;
}

.fusion-stat i {
  font-size: 1.2rem;
  color: #f39c12; /* poți schimba în funcție de tipul de valoare */
}


.fusion-date {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.fusion-date input {
  padding: 0.4rem;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.fusion-stats {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fusion-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  background: #f9f9f9;
}

.fusion-row.highlight {
  background: #fff7e6;
  font-weight: 600;
}

.fusion-row.buy {
  background: #fff0f0;
}

.fusion-row.stock {
  background: #f0fff4;
}

.fusion-label {
  font-weight: 500;
}

.fusion-value {
  font-weight: 600;
}

.fusion-date {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* 🔑 Permite să sară pe rând dacă nu încape pe un singur rând */
}

.fusion-date input[type="date"] {
  flex: 1; /* 🔑 Împarte spațiul în mod egal între cele 2 câmpuri */
  min-width: 120px; /* 🔑 Evită să devină prea mici pe ecrane înguste */
  max-width: 180px;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 0.9rem;
  box-sizing: border-box;
}