.questao.dark {
    background-color: #444
}

.questao.light {
    background-color: white;
}

.sidenav.dark{
    background-color: #212121;
}

.sidenav.light{
    background-color: #5b5451;
}
input.dark {
    color: white;
}

input.white {
    color: black;
}

h2.light {
    color: #111111de;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}

h2.dark {
    color: #e0e0e0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

h4.light {
    color: #25412B;
}

h4.dark {
    color: #fff;
}

p.light {
    color: #000000de;
}

p.dark {
    color: #e0e0e0;
}

.minha-imagem.light {
    background-color: #2e2e2e;
}

.minha-imagem.dark {
    background-color: #ffff;
}

body.dark .toggle-button::before {
    background-color: #222222;
    /* Cor de fundo escuro */
    border-color: #0f0f0f;
    /* Borda mais escura */
    color: white;
    content: '\f186';
    /* Ícone de lua (modo noturno) */
    transform: translateX(55px);
    /* Move o círculo para a direita no modo escuro */
}

body.dark .toggle-button {
    position: relative;
    width: 80px;
    height: 22px;
    background-color: #3A5A40;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, border-color 0.3s;
    padding-right: 20px;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin: 5px;
    font-family: 'Merriweather', serif;
}

body.dark {
    background-color: #2e2e2e;
    color: #e0e0e0;
}

body.light {
    background-color: #f5f5f5;
}

body.light .toggle-button {
    position: relative;
    width: 80px;
    height: 22px;
    background-color: #3A5A40;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, border-color 0.3s;
    padding-left: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin: 5px;
    font-family: 'Merriweather', serif;
}