/* ==========================================================================
   dashboard.css – Estilos exclusivos del dashboard
   Basado en layout.css + auth buttons (login/register)
   ========================================================================== */


/* =========================================================
   CONTENEDOR GENERAL
   ========================================================= */

.dashboard-container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1.5rem;
}

.dashboard-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.dashboard-message {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}


/* =========================================================
   BOTONERA TIPO AUTH (UNIFICADA)
   ========================================================= */

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

/* base igual login/register */
.dashboard-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* MIS MASCOTAS / PERFIL (outline verde) */
.dashboard-actions .btn-primary {
  background: white;
  border: 2px solid var(--primary, #3ba676);
  color: var(--primary, #3ba676);
}

.dashboard-actions .btn-primary:hover {
  background: var(--primary, #3ba676);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59,166,118,0.3);
}

/* CREAR ALERTA (filled verde tipo register) */
.dashboard-actions .btn-success {
  background: var(--primary, #3ba676);
  border: 2px solid var(--primary, #3ba676);
  color: white;
}

.dashboard-actions .btn-success:hover {
  background: var(--primary-dark, #2e8b57);
  transform: translateY(-2px);
}

/* MENSAJES */
.dashboard-actions .btn-secondary {
  background: white;
  border: 2px solid #e5e7eb;
  color: #333;
}

.dashboard-actions .btn-secondary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* CERRAR SESIÓN (rojo outline elegante) */
.dashboard-actions .btn-danger {
  background: white;
  border: 2px solid #e74c3c;
  color: #e74c3c;
}

.dashboard-actions .btn-danger:hover {
  background: #e74c3c;
  color: white;
  transform: translateY(-2px);
}


/* =========================================================
   BLOQUE DASHBOARD (CARD CENTRAL)
   ========================================================= */

.dashboard-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  margin-top: 2rem;
  transition: var(--transition);
}

.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(59,166,118,0.18);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
  .dashboard-title {
    font-size: 1.6rem;
  }

  .dashboard-actions {
    gap: 0.5rem;
  }

  .dashboard-actions a {
    width: 100%;
    justify-content: center;
  }
}