.card-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.feature-card, .quick-actions-card {
  width: 50%;
  min-width: 300px;
  max-width: 600px;
}

.user-statistics {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.user-stat-card {
  width: 23%;
  min-width: 200px;
  max-width: 250px;
}

/* Card styling */
.card {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Card header styling */
.card-header {
  background-color: #545E75; /*#f8f9fa;*/
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
}

/* Button styling for feature toggles */
.btn-toggle {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 4px;
}

.btn-toggle-enabled {
  background-color: #28a745;
  color: white;
}

.btn-toggle-disabled {
  background-color: #dc3545;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .card-container {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-card, .quick-actions-card {
    width: 100%;
  }
}
