/* CSV Preview Styles */
.csv-student-row {
    transition: all 0.2s ease-in-out;
}

.csv-student-row:hover {
    background-color: #f9fafb;
}

.csv-remove-btn {
    transition: all 0.2s ease-in-out;
    color: #dc2626 !important; /* Vermelho */
    display: flex;
    align-items: center; /* Alinha com o centro dos inputs */
    justify-content: center;
    height: 40px; /* Altura igual aos inputs */
    width: 40px;
    margin-top: 20px; /* Ajuste para alinhar com os inputs */
}

.csv-remove-btn:hover {
    transform: scale(1.05);
    background-color: #fef2f2 !important;
    color: #b91c1c !important; /* Vermelho mais escuro no hover */
}

#csv-preview-container {
    max-height: 400px;
    overflow-y: auto;
}
