#configuracao{
    position: absolute;
    top: 50px;
    left: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 100; /* Garantir que fique por cima */
}

#botaoConfiguracao{
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
}

#imagemConfiguracao{
    width: 50px;
    height: 50px;
}

#telaConfiguracao{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Inicia escondido */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 200; /* Fica acima de tudo */
}

#imagemVoltarConfiguracao{
    width: 50px;
    height: 50px;
}

#botaoFecharConfiguracao{
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
}

#quadradoConfiguracao{
    position: relative;
    width: 60%;
    height: 80%;
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

#configuracaoStatus{
    width: 100%;
    max-width: 500px;
}

#configuracaoStatus h2{
    color: #ffaa00;
    font-size: 22px;
    margin: 0 0 10px 0;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

#configuracaoStatus p{
    color: #cccccc;
    font-size: 14px;
    margin: 0 0 20px 0;
}

.opcoesStatus{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.opcaoStatus{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.8) 0%, rgba(35, 35, 35, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.opcaoStatus:hover{
    background: linear-gradient(135deg, rgba(70, 70, 70, 0.9) 0%, rgba(50, 50, 50, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.opcaoStatus input[type="checkbox"]{
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ffaa00;
}

.opcaoStatus span{
    color: white;
    font-size: 16px;
    font-weight: 500;
    user-select: none;
}

