/* ============================
   📊 Minus Report Summary Boxes (Modern Dashboard Style)
   ============================ */

.summary-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
  margin-top: 10px;
}

.info-box {
  flex: 1 1 220px;
  border-radius: 16px;
  text-align: center;
  padding: 28px 18px;
  transition: all 0.3s ease;
  cursor: default;
  font-family: 'Rubik', 'Segoe UI', sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
  border: 1px solid rgba(0,0,0,0.05);
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #ffffff, #f0f0f0);
}

.info-box h3 {
  font-family: 'Poppins', 'Rubik', 'Segoe UI', sans-serif;
  font-size: 2.3em;
  font-weight: 400;
  margin: 0 0 10px 0;
  letter-spacing: 0.3px;
  color: inherit;
  opacity: 0.9;
}

.info-box p {
  margin: 0;
  font-size: 1.05em;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
}

/* צבעים לטקסט */
.info-box.debit{
  color: #d32f2f !important;
}

.info-box.credit {
  color: #2e7d32 !important;
}

/* ===== רספונסיביות ===== */

@media (max-width: 768px) {
  .summary-container {
    flex-direction: column;
    align-items: center;
  }

  .info-box {
    width: 90%;
    max-width: 360px;
  }
}