.winner {
    color: red;
    font-weight: bold;
    animation: blink 1s infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
@media screen and (max-width: 768px) {
    #nameForm .btn-primary{
        margin-top: 20px;
    }
}
.fullscreen-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(227, 234, 22);
    color: #28bc09;
    font-size: calc(10vw + 20px);
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#toastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.btn-close-white {
    background: transparent;
    border: none;
    color: #333;
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 8px;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    /* Asegura que el contenido del botón sea visible */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-white::before {
    content: "x";
    font-weight: bold;
    font-size: 0.7em;
    line-height: 1;
}

.btn-close-white:hover {
    color: #acbdf1;
}

.container-spinner {
    gap: var(--wp--preset--spacing--20) !important;
}