/* public/assets/css/mi_perfil.css */

/* Contenedor principal, centrar columnas */
.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  padding-bottom: 3rem;
}

/* Encabezado centrado */
.profile-header {
  font-size: 2.2rem;
  font-weight: 600;
  color: #008243;
  margin-bottom: 2rem;
}

/* Card de info personal */
.profile-card {
  width: 100%;
  max-width: 600px;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.profile-card .profile-info p {
  margin: 0.75rem 0;
  font-size: 1.05rem;
  color: #333;
}

/* Botones de acción en info personal */
.profile-actions .btn {
  min-width: 140px;
}
.profile-edit-btn {
  background-color: #008243;
  border-color: #007a3d;
  color: #fff;
}
.profile-edit-btn:hover {
  background-color: #007a3d;
}
.profile-logout-btn {
  min-width: 140px;
}

/* Card de wishlist */
.profile-wishlist-card {
  width: 100%;
  max-width: 600px;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}
.profile-wishlist-card .card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  font-weight: 500;
  color: #008243;
}
.profile-wishlist-list .list-group-item {
  border: none;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 1.5rem;
}
.profile-wishlist-list .list-group-item:last-child {
  border-bottom: none;
}
.profile-wishlist-list .badge {
  background-color: #008243;
  font-size: 0.85rem;
}

/* Alerta centrada sin padding extra */
.profile-alert {
  text-align: center;
  margin: 1.5rem 0;
}

/* Responsive móvil */
@media (max-width: 576px) {
  .profile-card,
  .profile-wishlist-card {
    box-shadow: none;
  }
  .profile-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
