/* Add or modify styles as needed for the Students page */
.student-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.student-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 30%;
}

.student-item:hover {
    transform: scale(1.05);
}

.student-item img {
    width: 100%;
    height: 59vh;;
    border-bottom: 1px solid #ddd;
}


.student-details {
    padding: 15px;
}

.student-details h4 {
    color: #333;
    margin-bottom: 5px;
}

.student-details p {
    color: #777;
    margin-bottom: 5px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    /* Add or modify styles for smaller screens here */
    .left-options {
        font-size: 14px;
    }

    .main {
        font-size: 16px;
    }

    .title h2 {
        font-size: 24px;
    }

    .student-item {
        width: 100%;
    }

    .option-content a{
        text-decoration: none;
        color: white;
        font-size: 13px;
    }
    .option-content h2 a{
        font-size: 15px;
    }
}

