/**
 *
 * You can write your CSS code here, DO NOT touch the default JavaScript file
 * because it will make it harder for you to update.
 * 
 */

/*# sourceMappingURL=custom.css.map */

#loading {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Fondo negro semitransparente */
    z-index: 9999;
}

/* Contenedor de la animación dentro del fondo */
#loading .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}

/* Animación del spinner */
#loading .spinner::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

small {
    font-style: italic;
}

/*Flecha para hacer la pagina hacia arriba*/
.ir-arriba {
    display: none;
    background-repeat: no-repeat;
    font-size: 20px;
    color: black;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}


.parrafos-canciones {
    border: 1px solid black;
    border-radius: 12px;
    margin-bottom: 10px;
}

.texto-resaltar-canciones {
    background-color: #80808040;
    color: #000000;
    border-radius: 10%;
    font-weight: bold;
    padding: 3px;
}

.text-titulo-cancion{
    padding: 1px 7px;
    background-color: #6777ef59;
}