.mini-profile {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.mini-profile img {
    border-radius: 50%;
}

.mini-profile-dropdown {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 150px;
    z-index: 999;
}

.mini-profile-dropdown a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #333;
}

.mini-profile-dropdown a:hover {
    background-color: #32356B;
    color: #fff;
}

.mini-profile:hover .mini-profile-dropdown {
    display: block;
}

.sign-in-link {
    font-weight: bold;
}