/* Improve the navbar styling for better aesthetics */
.navbar {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;position: relative;
    padding: 15px 25px;
    background: linear-gradient(90deg, #000000, #303641);
}

/* Make the navigation links more stylish */
.navlink ul {
    display: flex;
    gap: 20px;
}

img{
    height: 80px;
    width: 100px;
    float: left;
    border-radius: 30%;  /*makes it circular */
    object-fit: cover;  /* crops perfectly inside the circle */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff; /* fallback background */
}

.navlink ul li {
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 15px;
    list-style: none;
}

.navlink ul li select {
   background-color: #00000000;
    color: rgb(255, 255, 255);
    font-weight: bold;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.navlink ul li select:hover {
    background-color: rgb(230, 216, 25);
    color: #fdfafa;
}

.navlink ul li select option {
    background-color: #222;
    color: rgb(255, 255, 255);
}
.navbar a {
    font-size: 16px;
    text-align: justify;
    font-weight: bold;
    padding: 8px 15px;
    justify-content: center;
    text-decoration: none; 
    color: rgb(255, 255, 255);
    transition: all 0.3s ease-in-out;
}

.navbar h1 {
    font-size: 24px;
    color: gold;
    font-weight: bold;
    margin: 5px;
    padding: 10px;
    text-align: center;
}

.navbar li:hover {
    background-color: rgba(239, 191, 35, 0.151);
    color: #000;
    border-radius: 5px;
    padding: 10px 20px;
}

.navbar a:hover{
    color: #000;
}
/* Add responsiveness for better mobile experience */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .navlink ul {
        flex-direction: column;
        gap: 10px;
    }

    .navlink ul li {
        margin-bottom: 10px;
    }
}
