/* ===========================
   DASHBOARD.CSS
   Carga: Solo vista dashboard
=========================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: #1a1a1a;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border-color: #444;
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: #2a2a2a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-icon .material-icons {
  font-size: 32px;
  color: #f19e39;
}

.stat-label {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.stat-change {
  font-size: 13px;
  color: #3b82f6;
}

.quick-actions {
  background: #1a1a1a;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.quick-actions h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
}

.quick-actions h2 .material-icons {
  color: #f19e39;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.action-btn {
  padding: 20px;
  background: #2a2a2a;
  color: white;
  border: 1px solid #333;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.action-btn:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: translateY(-2px);
}

.action-btn .material-icons {
  font-size: 24px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 28px;
  }
}