#sinch-custom-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #23282d;
    color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

.sinch-toolbar-menu {
    display: flex;
    gap: 15px;
}

.sinch-toolbar-item {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s;
}

.sinch-toolbar-item:hover {
    background: #32373c;
}

.sinch-toolbar-user-menu {
    position: relative;
}

.sinch-toolbar-user {
    cursor: pointer;
    padding: 5px 10px;
}

.sinch-toolbar-user:hover {
    background: #32373c;
}

.sinch-toolbar-user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #23282d;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 150px;
}

.sinch-toolbar-user-menu:hover .sinch-toolbar-user-dropdown {
    display: block;
}

.sinch-toolbar-user-dropdown .sinch-toolbar-item {
    display: block;
    padding: 10px;
    border-top: 1px solid #32373c;
}