/* Estilos para los botones de Me gusta/No me gusta */

.heart-icon {
    display: inline-block; /* Asegura que el icono sea visible */
    margin-left: 5px;
}


.vote-button {
    padding: 8px 16px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vote-button.active {
    background-color: #4CAF50;
    color: white;
}

/* Estilos adicionales para la sección de videos */
.Albums-box {
    margin: 10px;
    padding: 10px;
    border: 3px solid #FF0000;
    border-radius: 30px;
    background-color: #000;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

figcaption {
    font-size: 19px;
    margin-top: 10px;
    color: red; 
}
