/* /Pages/cadLancamentoNotas.razor.rz.scp.css */
.turmas-page[b-w7g4iiftf2] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}
/* /Pages/CadLancamentoNotasEI.razor.rz.scp.css */
.modal-overlay[b-o27o269idz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-content[b-o27o269idz] {
    background-color: #fff;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .modal-content[b-o27o269idz] {
        max-width: 100%;
        padding: 1rem;
    }

    .table[b-o27o269idz] {
        font-size: 0.9rem;
    }

        .table th[b-o27o269idz],
        .table td[b-o27o269idz] {
            padding: 0.4rem;
        }

    .form-group textarea[b-o27o269idz] {
        font-size: 0.9rem;
    }

    .btn[b-o27o269idz] {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .text-center.mt-4[b-o27o269idz] {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}

/* /Pages/Diario.razor.rz.scp.css */
.cad-diario-container[b-wpkcz9mmzz] {
    padding: 20px;
    background-color: white;
    max-width: 800px;
    margin: auto;
}

.cad-diario-header[b-wpkcz9mmzz] {
    background-color: #D32F2F;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.cad-label[b-wpkcz9mmzz] {
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    display: block;
}

.cad-input[b-wpkcz9mmzz] {
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
}

.cad-textarea[b-wpkcz9mmzz] {
    font-size: 16px;
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    padding: 5px;
}

.cad-progress[b-wpkcz9mmzz] {
    margin: 10px 0;
    color: darkblue;
    font-weight: bold;
}

.cad-botoes[b-wpkcz9mmzz] {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-gravar[b-wpkcz9mmzz], .btn-faltas[b-wpkcz9mmzz] {
    height: 60px;
    width: 150px;
    font-weight: bold;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-gravar[b-wpkcz9mmzz] {
    background-color: #1976D2;
}

.btn-faltas[b-wpkcz9mmzz] {
    background-color: #388E3C;
}
/* /Pages/DiarioModal.razor.rz.scp.css */
/* Fundo escurecido */
.modal-overlay[b-7m8jmi2p4y] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Caixa do modal */
.modal-content[b-7m8jmi2p4y] {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

/* Cabeçalho */
.cad-diario-header h2[b-7m8jmi2p4y] {
    margin-bottom: 20px;
    color: #0E5775;
}

/* Linhas do formulário */
.cad-linha[b-7m8jmi2p4y] {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.cad-label[b-7m8jmi2p4y] {
    font-weight: bold;
    margin-bottom: 5px;
}

.cad-input[b-7m8jmi2p4y],
.cad-textarea[b-7m8jmi2p4y] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.cad-textarea[b-7m8jmi2p4y] {
    height: 80px;
    resize: vertical;
}

/* Indicador de carregamento */
.cad-progress[b-7m8jmi2p4y] {
    font-weight: bold;
    color: #0E5775;
    margin-bottom: 10px;
}

/* Botões */
.cad-botoes[b-7m8jmi2p4y] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-gravar[b-7m8jmi2p4y],
.btn-faltas[b-7m8jmi2p4y],
.btn-fechar[b-7m8jmi2p4y] {
    background-color: #0E5775;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-fechar[b-7m8jmi2p4y] {
    background-color: #555;
}

    .btn-gravar:hover[b-7m8jmi2p4y],
    .btn-faltas:hover[b-7m8jmi2p4y],
    .btn-fechar:hover[b-7m8jmi2p4y] {
        background-color: #09425a;
    }

/* Responsivo */
@media (max-width: 600px) {
    .modal-content[b-7m8jmi2p4y] {
        padding: 20px;
    }

    .cad-botoes[b-7m8jmi2p4y] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-gravar[b-7m8jmi2p4y],
    .btn-faltas[b-7m8jmi2p4y],
    .btn-fechar[b-7m8jmi2p4y] {
        width: 100%;
    }
}

.mensagem-sucesso[b-7m8jmi2p4y] {
    color: green;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.mensagem-erro[b-7m8jmi2p4y] {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

/* /Pages/EditarAulaModal.razor.rz.scp.css */
/* Fundo escurecido */
.modal-overlay[b-s1w5g0onhi] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Caixa do modal */
.modal-content[b-s1w5g0onhi] {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

/* Cabeçalho */
.cad-diario-header h2[b-s1w5g0onhi] {
    margin-bottom: 20px;
    color: #0E5775;
}

/* Linhas do formulário */
.cad-linha[b-s1w5g0onhi] {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.cad-label[b-s1w5g0onhi] {
    font-weight: bold;
    margin-bottom: 5px;
}

.cad-input[b-s1w5g0onhi],
.cad-textarea[b-s1w5g0onhi] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.cad-textarea[b-s1w5g0onhi] {
    height: 80px;
    resize: vertical;
}

/* Indicador de carregamento */
.cad-progress[b-s1w5g0onhi] {
    font-weight: bold;
    color: #0E5775;
    margin-bottom: 10px;
}

/* Botões */
.cad-botoes[b-s1w5g0onhi] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-gravar[b-s1w5g0onhi],
.btn-faltas[b-s1w5g0onhi],
.btn-fechar[b-s1w5g0onhi] {
    background-color: #0E5775;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-fechar[b-s1w5g0onhi] {
    background-color: #555;
}

    .btn-gravar:hover[b-s1w5g0onhi],
    .btn-faltas:hover[b-s1w5g0onhi],
    .btn-fechar:hover[b-s1w5g0onhi] {
        background-color: #09425a;
    }

/* Responsivo */
@media (max-width: 600px) {
    .modal-content[b-s1w5g0onhi] {
        padding: 20px;
    }

    .cad-botoes[b-s1w5g0onhi] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-gravar[b-s1w5g0onhi],
    .btn-faltas[b-s1w5g0onhi],
    .btn-fechar[b-s1w5g0onhi] {
        width: 100%;
    }
}
/* /Pages/FaltasModal.razor.rz.scp.css */
.modal-overlay[b-zqjn1n0jkc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-zqjn1n0jkc] {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

.faltas-container[b-zqjn1n0jkc] {
    display: flex;
    flex-direction: column;
}

.faltas-header[b-zqjn1n0jkc] {
    background-color: #D32F2F;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.faltas-info p[b-zqjn1n0jkc] {
    font-size: 16px;
    margin: 5px 0;
}

.faltas-lista-header[b-zqjn1n0jkc] {
    background-color: #87CEEB;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}

.faltas-table[b-zqjn1n0jkc] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

    .faltas-table th[b-zqjn1n0jkc],
    .faltas-table td[b-zqjn1n0jkc] {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: left;
    }

.faltas-loading[b-zqjn1n0jkc] {
    font-weight: bold;
    color: #0E5775;
    margin-bottom: 10px;
    text-align: center;
}

.faltas-botoes[b-zqjn1n0jkc] {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-gravar[b-zqjn1n0jkc],
.btn-fechar[b-zqjn1n0jkc] {
    background-color: #0E5775;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.btn-fechar[b-zqjn1n0jkc] {
    background-color: #555;
}

    .btn-gravar:hover[b-zqjn1n0jkc],
    .btn-fechar:hover[b-zqjn1n0jkc] {
        background-color: #09425a;
    }
/* /Pages/FichaRendimentoModal.razor.rz.scp.css */
.modal-overlay[b-kr6vp4cmw1] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.modal-content[b-kr6vp4cmw1] {
    background-color: #fff;
    width: 80vw;
    height: 80vh;
    padding: 30px;
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.close-button[b-kr6vp4cmw1] {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 10000;
}

.modal-title[b-kr6vp4cmw1] {
    color: #0E5775;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .modal-content[b-kr6vp4cmw1] {
        width: 95vw;
        height: 90vh;
        padding: 15px;
    }

    .close-button[b-kr6vp4cmw1] {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }

    .modal-title[b-kr6vp4cmw1] {
        font-size: 20px;
    }
}
/* /Pages/JustificativaModal.razor.rz.scp.css */
.modal-overlay[b-p5v9whfn5p] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-p5v9whfn5p] {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

.justificativa-container[b-p5v9whfn5p] {
    display: flex;
    flex-direction: column;
}

.justificativa-header[b-p5v9whfn5p] {
    background-color: #0E5775;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.justificativa-label[b-p5v9whfn5p] {
    font-weight: bold;
    margin-bottom: 5px;
}

.justificativa-textarea[b-p5v9whfn5p] {
    height: 120px;
    resize: vertical;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
}

.justificativa-erro[b-p5v9whfn5p] {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}

.justificativa-loading[b-p5v9whfn5p] {
    font-weight: bold;
    color: #0E5775;
    margin-bottom: 10px;
    text-align: center;
}

.justificativa-botoes[b-p5v9whfn5p] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.btn-gravar[b-p5v9whfn5p],
.btn-excluir[b-p5v9whfn5p],
.btn-fechar[b-p5v9whfn5p] {
    background-color: #0E5775;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 180px;
}

.btn-excluir[b-p5v9whfn5p] {
    background-color: red;
}

.btn-fechar[b-p5v9whfn5p] {
    background-color: #555;
}

    .btn-gravar:hover[b-p5v9whfn5p],
    .btn-excluir:hover[b-p5v9whfn5p],
    .btn-fechar:hover[b-p5v9whfn5p] {
        background-color: #09425a;
    }
/* /Pages/ListaAlunosAulaModal.razor.rz.scp.css */
/* Fundo escurecido */
.modal-overlay[b-f42zwhs5n8] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Caixa do modal */
.modal-content[b-f42zwhs5n8] {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

/* Container interno */
.alunos-modal-container[b-f42zwhs5n8] {
    display: flex;
    flex-direction: column;
}

    /* Cabeçalho */
    .alunos-modal-container h2[b-f42zwhs5n8] {
        color: #0E5775;
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }

/* Indicador de carregamento */
.loading-indicator[b-f42zwhs5n8] {
    font-weight: bold;
    color: #0E5775;
    margin-bottom: 10px;
    text-align: center;
}

/* Cabeçalho da lista */
.alunos-header[b-f42zwhs5n8] {
    display: flex;
    justify-content: space-between;
    background-color: skyblue;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Item da lista */
.aluno-item[b-f42zwhs5n8] {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid silver;
    font-size: 16px;
}

/* Cores de presença */
.presente[b-f42zwhs5n8] {
    color: green;
    font-weight: bold;
}

.ausente[b-f42zwhs5n8] {
    color: red;
    font-weight: bold;
}

/* Botões */
.modal-actions[b-f42zwhs5n8] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-fechar[b-f42zwhs5n8] {
    background-color: #555;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

    .btn-fechar:hover[b-f42zwhs5n8] {
        background-color: #333;
    }

/* Responsivo */
@media (max-width: 600px) {
    .modal-content[b-f42zwhs5n8] {
        padding: 20px;
    }

    .aluno-item[b-f42zwhs5n8] {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .alunos-header[b-f42zwhs5n8] {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .btn-fechar[b-f42zwhs5n8] {
        width: 100%;
    }
}

.btn-alterar[b-f42zwhs5n8] {
    margin-right: 5px;
    background-color: #007bff;
    color: white;
}

.btn-justificar[b-f42zwhs5n8] {
    background-color: #ffc107;
    color: black;
}

.justificar-modal[b-f42zwhs5n8] {
    max-width: 600px;
    padding: 20px;
}

.justificar-container[b-f42zwhs5n8] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.justificar-header h3[b-f42zwhs5n8] {
    background-color: #007bff;
    color: white;
    padding: 10px;
    margin-bottom: 10px;
}

.justificar-textarea[b-f42zwhs5n8] {
    width: 100%;
    padding: 10px;
    resize: vertical;
}

.modal-actions button[b-f42zwhs5n8] {
    margin-right: 10px;
}

/* /Pages/ListarAulas.razor.rz.scp.css */
h2[b-x5jdxk591q] {
    color: #0E5775;
    margin-bottom: 20px;
}

.aulas-loading[b-x5jdxk591q] {
    font-weight: bold;
    color: #0E5775;
    margin-bottom: 10px;
}

.aulas-table[b-x5jdxk591q] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 16px;
}

    .aulas-table th[b-x5jdxk591q],
    .aulas-table td[b-x5jdxk591q] {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    .aulas-table th[b-x5jdxk591q] {
        background-color: #0E5775;
        color: white;
        font-weight: 600;
    }

    .aulas-table td[b-x5jdxk591q] {
        vertical-align: top;
    }

.btn-acao[b-x5jdxk591q] {
    background-color: #0E5775;
    color: white;
    border: none;
    padding: 8px 14px;
    margin-right: 6px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

    .btn-acao:hover[b-x5jdxk591q] {
        background-color: #09425a;
    }

/* Responsivo para celular */
@media (max-width: 768px) {
    .aulas-table[b-x5jdxk591q] {
        font-size: 14px;
    }

    .btn-acao[b-x5jdxk591q] {
        display: block;
        width: 100%;
        margin: 6px 0;
    }

    .aulas-table th[b-x5jdxk591q],
    .aulas-table td[b-x5jdxk591q] {
        padding: 10px;
    }
}

.tabela-responsiva[b-x5jdxk591q] {
    overflow-x: auto;
    width: 100%;
}

.aulas-table[b-x5jdxk591q] {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

    .aulas-table th[b-x5jdxk591q],
    .aulas-table td[b-x5jdxk591q] {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: left;
    }

    .aulas-table th[b-x5jdxk591q] {
        background-color: #0E5775;
        color: white;
    }

.btn-acao[b-x5jdxk591q] {
    margin-right: 5px;
    padding: 6px 12px;
    font-size: 14px;
    border: none;
    background-color: #0E5775;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-acao:hover[b-x5jdxk591q] {
        background-color: #09425c;
    }

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .aulas-table th[b-x5jdxk591q],
    .aulas-table td[b-x5jdxk591q] {
        padding: 8px;
        font-size: 14px;
    }

    .btn-acao[b-x5jdxk591q] {
        font-size: 13px;
        padding: 5px 10px;
    }

    h2[b-x5jdxk591q] {
        font-size: 20px;
    }

    p[b-x5jdxk591q] {
        font-size: 15px;
    }
}

/* /Pages/Login.razor.rz.scp.css */
.login-subtitle[b-wme5b48ut6] {
    color: #878787;
    margin-bottom: 15px;
}

.login-field[b-wme5b48ut6] {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.login-input[b-wme5b48ut6] {
    padding: 10px;
    border: 1px solid #acb0af;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.login-button[b-wme5b48ut6] {
    background-color: #0E5775;
    color: white;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
}

.login-exit[b-wme5b48ut6] {
    background-color: black;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    width: 100%;
}

.erro[b-wme5b48ut6] {
    color: red;
    margin-top: 10px;
}

.login-processando[b-wme5b48ut6] {
    color: #0E5775;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

.erro[b-wme5b48ut6] {
    color: red;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

/* Fundo escurecido */
.overlay-loading[b-wme5b48ut6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Spinner giratório */
.spinner[b-wme5b48ut6] {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0E5775;
    border-radius: 50%;
    animation: spin-b-wme5b48ut6 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-wme5b48ut6 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Texto abaixo do spinner */
.loading-text[b-wme5b48ut6] {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}


/* /Pages/MinhasTurmas.razor.rz.scp.css */
/* Reset básico */
html[b-ycaqaqj29h], body[b-ycaqaqj29h] {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f8;
}

/* Contêiner principal da página */
.turmas-page[b-ycaqaqj29h] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

    /* Título */
    .turmas-page h2[b-ycaqaqj29h] {
        margin-bottom: 20px;
        color: #0E5775;
    }

/* Envolve a tabela para scroll horizontal em telas pequenas */
.table-wrapper[b-ycaqaqj29h] {
    overflow-x: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Tabela de turmas */
.turmas-table[b-ycaqaqj29h] {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

    .turmas-table th[b-ycaqaqj29h],
    .turmas-table td[b-ycaqaqj29h] {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    .turmas-table th[b-ycaqaqj29h] {
        background-color: #0E5775;
        color: white;
        font-weight: 600;
    }

/* Botões de ação */
.btn-acao[b-ycaqaqj29h] {
    background: linear-gradient(135deg, #0E5775, #092751);
    color: #fff;
    border: none;
    padding: 8px 14px;
    margin: 4px 2px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .btn-acao:hover[b-ycaqaqj29h] {
        background: linear-gradient(135deg, #09425a, #061a2f);
        transform: scale(1.03);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .btn-acao:active[b-ycaqaqj29h] {
        transform: scale(0.98);
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

/* Responsivo para celular */
@media (max-width: 768px) {
    .turmas-page[b-ycaqaqj29h] {
        padding: 10px;
    }

    .table-wrapper[b-ycaqaqj29h] {
        padding: 10px;
    }

    .btn-acao[b-ycaqaqj29h] {
        display: block;
        width: 100%;
        margin: 6px 0;
    }

    .turmas-table th[b-ycaqaqj29h],
    .turmas-table td[b-ycaqaqj29h] {
        font-size: 14px;
        padding: 10px;
    }
}

.modal-overlay[b-ycaqaqj29h] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content[b-ycaqaqj29h] {
    background: white;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    position: relative;
    z-index: 1001;
}

.close-button[b-ycaqaqj29h] {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}


/* /Pages/Turmas.razor.rz.scp.css */
/* Reset básico */
html[b-pfzbfge68i], body[b-pfzbfge68i] {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f8;
}

/* Contêiner principal da página */
.turmas-page[b-pfzbfge68i] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
}

/* Área interna com duas colunas */
.turmas-wrapper[b-pfzbfge68i] {
    display: flex;
    flex: 1;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

/* Coluna da lista de turmas */
.turmas-lista[b-pfzbfge68i] {
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Cartão individual de turma */
.turma-card[b-pfzbfge68i] {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

/* Botões de ação por turma */
.turma-acoes[b-pfzbfge68i] {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .turma-acoes button[b-pfzbfge68i] {
        padding: 8px 12px;
        border: none;
        background-color: #0E5775;
        color: white;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        transition: background-color 0.2s ease;
    }

        .turma-acoes button:hover[b-pfzbfge68i] {
            background-color: #09425a;
        }

/* Coluna do painel de ações */
.painel-acoes[b-pfzbfge68i] {
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Barra de progresso */
.progress-bar[b-pfzbfge68i] {
    font-weight: bold;
    color: #0E5775;
    margin-bottom: 10px;
}

/* Responsividade para celular */
@media (max-width: 768px) {
    .turmas-wrapper[b-pfzbfge68i] {
        flex-direction: column;
        padding: 10px;
    }

    .turmas-lista[b-pfzbfge68i],
    .painel-acoes[b-pfzbfge68i] {
        width: 100%;
        padding: 15px;
    }

    .turma-acoes[b-pfzbfge68i] {
        flex-direction: column;
    }

        .turma-acoes button[b-pfzbfge68i] {
            width: 100%;
        }
}
/* /Shared/LoadingOverlay.razor.rz.scp.css */
.overlay-loading[b-g0z3d0zy52] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spinner[b-g0z3d0zy52] {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0E5775;
    border-radius: 50%;
    animation: spin-b-g0z3d0zy52 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-g0z3d0zy52 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text[b-g0z3d0zy52] {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
/* /Shared/LoginLayout.razor.rz.scp.css */
.login-wrapper[b-mzsh9oeh4t] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f4f6f8;
}

.login-grid[b-mzsh9oeh4t] {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 900px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    background-color: white;
}

.login-left[b-mzsh9oeh4t] {
    background: linear-gradient(135deg, #0E5775, #092751);
    color: white;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-logo[b-mzsh9oeh4t] {
    width: 128px;
    height: 61px;
    margin-bottom: 20px;
}

.login-slogan[b-mzsh9oeh4t] {
    opacity: 0.8;
    margin: 20px 0;
    text-align: center;
}

.login-contact[b-mzsh9oeh4t] {
    background-color: #50abf8;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-shapes .triangle[b-mzsh9oeh4t],
.login-shapes .triangle2[b-mzsh9oeh4t],
.login-shapes .circle[b-mzsh9oeh4t],
.login-shapes .dot[b-mzsh9oeh4t] {
    position: absolute;
    background-color: #0E5775;
}

.triangle[b-mzsh9oeh4t] {
    top: 20px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 230px solid transparent;
    border-bottom: 120px solid #0E5775;
}

.triangle2[b-mzsh9oeh4t] {
    bottom: 30px;
    left: 100px;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-bottom: 100px solid #0E5775;
}

.circle[b-mzsh9oeh4t] {
    bottom: 20px;
    left: 250px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.dot[b-mzsh9oeh4t] {
    bottom: 60px;
    left: 50px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.login-right[b-mzsh9oeh4t] {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsivo para celular */
@media (max-width: 768px) {
    .login-grid[b-mzsh9oeh4t] {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        border-radius: 0;
    }

    .login-left[b-mzsh9oeh4t],
    .login-right[b-mzsh9oeh4t] {
        padding: 20px;
    }

    .login-contact[b-mzsh9oeh4t] {
        width: 100%;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-j62whn228z] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-j62whn228z] {
    flex: 1;
}

.sidebar[b-j62whn228z] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-j62whn228z] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-j62whn228z]  a, .top-row[b-j62whn228z]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-j62whn228z]  a:hover, .top-row[b-j62whn228z]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-j62whn228z]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-j62whn228z] {
        display: none;
    }

    .top-row.auth[b-j62whn228z] {
        justify-content: space-between;
    }

    .top-row[b-j62whn228z]  a, .top-row[b-j62whn228z]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-j62whn228z] {
        flex-direction: row;
    }

    .sidebar[b-j62whn228z] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-j62whn228z] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-j62whn228z]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-j62whn228z], article[b-j62whn228z] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

.usuario-logado[b-j62whn228z] {
    margin-right: auto;
    font-size: 16px;
    color: #0E5775;
}

/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-geagbo5eds] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-geagbo5eds] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-geagbo5eds] {
    font-size: 1.1rem;
}

.oi[b-geagbo5eds] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-geagbo5eds] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-geagbo5eds] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-geagbo5eds] {
        padding-bottom: 1rem;
    }

    .nav-item[b-geagbo5eds]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-geagbo5eds]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-geagbo5eds]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-geagbo5eds] {
        display: none;
    }

    .collapse[b-geagbo5eds] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-geagbo5eds] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
