/* Stats Component Styles - Redesigned Minimal Design */
.quick-stats-banner {
  background-color: var(--background-white);
  border-radius: 7.68px;
  padding: 0.96rem;
  margin-bottom: 0.96rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--dentist-blue);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.96rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.64rem;
  padding: 0.96rem;
  background-color: var(--background-light);
  border-radius: 7.68px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--dentist-blue);
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(33, 147, 176, 0.2);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0;
}

.stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dentist-blue);
  line-height: 1.2;
  margin-top: 0.24rem;
}

/* Responsive Stats Banner */
/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .quick-stats-banner {
    padding: 0.96rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.64rem;
  }
  
  .stat-card {
    padding: 0.96rem;
  }
  
  .stat-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .stat-value {
    font-size: 0.85rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
  .quick-stats-banner {
    padding: 0.96rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.64rem;
  }
  
  .stat-card {
    padding: 0.96rem;
    gap: 0.64rem;
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .stat-value {
    font-size: 0.9rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  .quick-stats-banner {
    padding: 0.64rem;
    border-radius: 7.68px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.48rem;
  }
  
  .stat-card {
    padding: 0.96rem;
    gap: 0.64rem;
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .stat-value {
    font-size: 0.9rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}
