/* Estilo general para el botón ROSADO PARA DESCARGAR CANCIONES */
.custom-download-button {
    color: white;
    background-color: fuchsia;
    padding: 10px 10px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

/* Estilo para pantallas grandes (PC) */
@media (min-width: 768px) {
    .custom-download-button {
        margin-top: 15px; /* Más espacio para vista de PC */
        font-size: 16px; /* Tamaño más grande */
    }
}

/* Estilo para pantallas pequeñas (celular) */
@media (max-width: 767px) {
    .custom-download-button {
        margin-top: 1px; /* Menos espacio en vista móvil */
        font-size: 14px; /* Tamaño más pequeño */
        padding: 8px 8px; /* Ajuste de padding */
    }
}