/* Faz o menu ocupar toda a largura em mobile quando aberto */
@media (max-width: 991.98px) {
    #sidebarMenu {
        top: 56px; /* Ajuste conforme a altura da sua navbar */
        left: 0;
        width: 100%;
        z-index: 1000;
        overflow-y: auto;
        height: calc(100vh - 56px);
    }
}

.btn-blink {
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}


.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: url('/dashboard/imagens/loading.gif') 50% 50% no-repeat white;
}

label {
    font-size: 0.8em;
    padding: -2px;
    color: #CCCCCC;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.wave-link {
    position: relative;
    display: inline-block;
    padding: 14px 28px;
    background-color: #FFD700; /* Amarelo ouro */
    color: #000080;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    overflow: visible;
    transition: all 0.3s ease;
    outline: none;
    text-decoration: none;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wave-link:hover {
    background-color: #FFC000; /* Amarelo mais escuro no hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: #000080;
}

.wave-link-text {
    position: relative;
    z-index: 10;
    text-decoration: none;
    color: #000080;
}

/* Efeito de onda permanente em branco */
.permanent-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6); /* Branco com transparência */
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(1);
    animation: permanentPulse 2s infinite ease-out;
    pointer-events: none;
    z-index: 0;
}

.permanent-wave:nth-child(2) {
    animation-delay: 0.66s;
}

.permanent-wave:nth-child(3) {
    animation-delay: 1.33s;
}

@keyframes permanentPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        border-width: 2px;
    }
    70% {
        opacity: 0.3;
        border-width: 3px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
        border-width: 1px;
    }
}

.btn-container {
    margin: 3rem 0;
    position: relative;
    display: inline-block;
}

.btn-wrapper {
    position: relative;
    display: inline-block;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pulsing-star {
    color: #FFD700;
    font-size: 1.5rem;
    animation: pulse 1.5s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-link {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.numeros-aposta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.bola-numero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

.bola-numero-premiada {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
.loader-spinner {
    width: 3rem;
    height: 3rem;
}