body {
    font-family: 'Poppins', sans-serif;
    background: #1c1c1c;
    text-decoration: none;
}
.student-box {
    border: 1px solid;
    padding: 16px;
    margin: 16px;
    border-radius: 8px;
    border-color: #efefef;
    color:#efefef;
    max-width: 300px;
    border-width: 5px;
    border-style: solid;
    cursor: pointer;
}
.student-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #1c1c1c;
    border-color: #efefef;
    border-width: 5px;
    border-style: solid;
    color: #efefef;
    text-decoration: none;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}
.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
