
.download-student-container {
    width: 90%;
    margin: 20px auto;
}
.download-student-label-and-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.download-student-label {
    font-size: 24px;
    font-weight: bold;
}
.download-student-download-button {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.download-student-download-button:hover {
    background-color: #0056b3;
}
.download-student-excel-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.download-student-excel-table th, .download-student-excel-table td {
    border: 1px solid #cccccc;
    padding: 8px;
    text-align: left;
    width: 100px;
}
.download-student-excel-table th {
    background-color: #f2f2f2;
}
.download-student-excel-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
