/******* Do not edit this file *******
Code Snippets Manager
Saved: Nov 17 2025 | 16:11:30 */
@charset "UTF-8";
/* ----------------------------------------------------------
   BOTÓN DE FAVORITOS (en página de curso)
---------------------------------------------------------- */
.btn-favorito {
  width: 100%;
  padding: 0.6rem 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 2px solid var(--global-color-8);
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  gap: 8px;
  color: var(--global-color-8);
  transition: background 0.2s;
}
/* icono corazón (stroke) */
.btn-favorito .icon-heart {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-color: var(--global-color-8);
  mask: url("https://cdn.jsdelivr.net/npm/lucide-static/icons/heart.svg") no-repeat center;
  mask-size: contain;
  transition: background-color 0.2s;
}
/* hover */
.btn-favorito:hover {
  background: rgba(26, 74, 156, 0.15);
}
/* ACTIVO: solo cambia el corazón */
.btn-favorito.fav-activo .icon-heart {
  background-color: #DA2C3E;
  /* rojo de favoritos */
}
/* ----------------------------------------------------------
   LISTADO DE FAVORITOS
---------------------------------------------------------- */
.curso-fav {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Inter, sans-serif;
}
.curso-fav a {
  font-size: 15px;
  font-weight: 600;
  color: #1A4A9C;
  text-decoration: none;
}
.curso-fav a:hover {
  text-decoration: underline;
}
/* Datos del curso */
.curso-fav-datos {
  font-size: 13px;
  color: #444;
  margin-top: 4px;
}
/* Botón eliminar */
.btn-fav-delete {
  padding: 6px 10px;
  border-radius: 6px;
  background: #DA2C3E;
  color: #fff;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-fav-delete:hover {
  background: #B02331;
}
