
body {
    font-family: 'Google Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    user-select: none; /* Impede a seleção de texto em todo o site */
}

/* Tema escuro */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: #333;
    }
}







#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

#progressDialog {
    background: #fff;
    color: #3949AB;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.progressCircle {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #3949AB;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.navbar {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #3949AB;
    border-bottom: 1px solid #dee2e6;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    color: #fff;
}
.menu-toggle {
    cursor: pointer;
    font-size: 24px;
    margin-right: 20px;
}

.navbar-title {
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    margin-right: 20px;
}
