<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  body {
    background: #f4b402;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f4b402, #6cd4fa);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f4b402, #6cd4fa); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #000;
}

.student-profile .card {
    border-radius: 10px;
}

.student-profile .card .card-header .profile_img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 10px auto;
    border: 10px solid #ccc;
    border-radius: 50%;
}

.student-profile .card h3 {
    font-size: 20px;
    font-weight: 700;
}

.student-profile .card p {
    font-size: 16px;
    color: #000;
}

.student-profile .table th,
.student-profile .table td {
    font-size: 14px;
    padding: 5px 10px;
    color: #000;
}
.search-form{
    position: absolute;
    width:80%;
    height: 20vh;
    top: 350px;
    left: 10%;
    padding: 25px;
    background-color: #ddd;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.from-control{
    width:80%;
    height: 50px;
    text-align: center;
    outline: none;
    border: none;
    border-radius: 10px;
}
.button{
    margin-left: 25px;
    height: 50px;
    width: 100px;
    background: #338DFF ;
    border-radius: 7px;
    border:0;
    outline: none;
}
.message{
    position: absolute;
    top: 300px;
    background-color: #ddd;
    width: 80%;
/*    border-radius: 7px;*/
    display: block;
    padding: 20px;
    left: 10%;
    text-align: center;
    font-size: 1.5rem;
}</pre></body></html>