/* ==========================================================================
   components.css
   - Reusable UI components (cards, stats, buttons, etc.)
   ========================================================================== */

/* 1) Info Stat (Bilgi Şeridi / İstatistik Kartı) */
.info-stat {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.info-stat i {
  font-size: 1.8rem;
  color: #0b1d36;
}

.info-stat span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-blue);
}
