body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
}
.dashboard-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}
.card p {
    font-size: 1.2rem;
    color: #000000;
}
.previsao {
    width:62%;
    background: transparent;
    box-shadow: unset;
    padding: 0;
}
.info {
    width:34%;
}
.graficos {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
}
.aluno-graficos.aluno-full {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    background: transparent;
    padding: 0;
    box-shadow: unset;
}
.graficos .aluno-unique .aluno-graficos {
     width:100%;
}
.graficos .aluno-unique .presencas {
    width: 48%;
    float: left;
}
.graficos .aluno-unique .notas {
    width: 48%;
    float: right;
}
.proati {
    width:100%;
    margin-bottom: 20px;
}
.proati ul {
    list-style:none;
}
.proati .provas-atividades-lista span:first-child {
    min-width:40%;
}
.proati .provas-atividades-lista li:hover {
    background:#f1f1f1;
}
.proati .icon-proati {
    color:#6f7c9e;
}
#top .proati li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 16px;
    margin: 0;
    border-top: 1px solid #abbffb;
    line-height: 30px;
    align-items: center;
    align-content: center;
    padding:10px;
}
#top .proati li:first-child {
    border-top:none;
}
#top .proati li span:first-child {
    width:100%;
}
#top .info hr {
    margin: 20px 0;
}
#top .info ul li {
    list-style:none;
    margin: 0;
    padding: 0;
}
#top .info ul li img {
    border: 1px solid #ddd;
}
#top .icon-link {
    display: flex;
    gap: 30px;
    font-size: 1.4em;
    justify-content: center;
}
#top .icon-link a {
    color:#666;
}
#top .icon-link a span {
    color:#3e97ff;
    font-size: 1.5em;
    vertical-align: middle;
    background: #d5e8ff;
    padding: 5px 10px;
    border-radius: 0.475rem;
}
.notas, .presencas {
    width: 48%;
}
.title-card {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.calendar {
    grid-column: span 2;
}
.chart-container {
    width: 100%;
    height: 300px;
}
.animated {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.aluno-graficos {
    width:48%;
    background: #c1c1c1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aluno-graficos .presencas {
    width:100%;
    margin-bottom:20px;
}
.aluno-graficos .notas {
    width:100%;
    margin-bottom:20px;
}
.aluno-info {
    text-align:center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom:20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aluno-info img {
    margin-right: 0 !important;
    float: unset !important;
    border: 1px solid #ccc !important;
}

/* Mobile */
@media screen and (max-width: 782px) {
    .animated {
        width:100% !important;
    }
    .dashboard-container {
        padding: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
    .responsive #top #wrap_all .container {
        width: 95% !important;
        max-width: 95% !important;
    }
    .graficos {
        flex-direction: column;
        gap: 20px;
    }
    .info {
        font-size: 1.4em;
    }
    .title-card {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    #top .proati li {
       flex-direction: column;
       background: #eee;
        margin: 10px 0;
        border: 1px solid #3e97ff !important;
        font-size: 1.4em;
    }
}