.logo a {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.user-menu {
    position: relative;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.user-icon img {
    width: 100%;
    height: 100%;
}

.dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    color: black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    min-width: 150px;
    text-align: center;
}

.dropdown span {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.dropdown .btn {
    display: block;
    background: #f04e30;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 5px;
}

.dropdown .btn:hover {
    background: #d43c1a;
}

.show-dropdown {
    display: block;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #088728;
    color: white;
}
