.bg-soccer {
    background-color: #003f5c;
}

.text-white {
    color: #fff;
}

button, input, a {
    margin-top: 10px;
}
.btn-secondary {
    background-color: #6c757d;
    border: none;
}

.btn-secondary:hover {
    background-color: #5a6268;
}
/* Ocultar la barra de carga por defecto */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

/* Estilo de la barra de carga */
.loader {
    font-size: 1.5rem;
    color: #fff;
    background: #333;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    animation: fadeIn 1.5s infinite;
}

/* Animación de desvanecimiento para el texto */
@keyframes fadeIn {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}