.presenca-escolar-container {
    font-family: Arial, sans-serif;
    margin: 0 auto;
}
.presenca-escolar-container .card-top {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}
.card-top .total, .card-top .presenca, .card-top .falt {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    align-items: center;
    color: #066ae0 !important;
    margin-bottom: 20px;
}
.materia-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.4em;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    color: #066ae0 !important;
    margin-bottom: 20px;
}
.materia-card:hover {
    box-shadow: 0 0 11px -4px rgb(6 106 224);
    background: #f8f8f8;
    border: 1px solid #066ae0;
}
.materia-card h3, .materia-card h4 {
    margin-top: 0;
    color: #777777 !important;
}
.materia-card strong {
    color: #066ae0 !important;
}
.numeros-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.numeros-card .presenca {
    background: #dfffea;
    border: 1px solid #91e391;
    color: green;
    border-radius: 3px;
    padding: 4px 8px;
}
.numeros-card .falta {
    background: #fff2f2;
    border: 1px solid #ffd1d1;
    color: red;
    border-radius: 3px;
    padding: 4px 8px;
}
.numeros-card .total {
    background: #e9ecf5;
    border: 1px solid #c0d2ff;
    padding: 10px;
    color: #202b46;
    border-radius: 3px;
    padding: 4px 8px;
}

.aluno-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.aluno-card h3 {
    margin-top: 0;
    color: #0073aa;
}

/* Gráficos (opcional) */
.materia-card p {
    margin: 5px 0;
}
.progress {
    background-color: #f3f3f3;
    border-radius: 10px;
    height: 20px;
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
}

.progress-bar-inner {
    background-color: #4caf50;
    height: 100%;
    border-radius: 10px;
    position: relative;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}
.presenca-prof {
 border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;   
}
.presenca-prof form {
    width: 100%;
}
/* Mobile */
@media screen and (max-width: 782px) {
    .presenca-escolar-container .card-top {
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 20px;
        text-align: center;
    }
    .materia-card {
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }
}