.aluno-cursos-background {
    background-color: #030617;
    overflow: hidden;
}

.aluno-curso-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.aluno-curso-card {
    width: 350px;
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding-left: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #0c0f1e;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.aluno-curso-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.aluno-curso-adicionar {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aluno-curso-icone {
    width: 60px;
    height: 60px;
}
