.weborado-helper-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 32px 16px 180px;
    margin-bottom: 24px;
    min-height: 56px;
    box-sizing: border-box;
    position: relative;
    left: -160px;
    width: calc(100% + 160px);
}
.weborado-helper-topbar-left {
    display: flex;
    align-items: center;
}
.weborado-helper-topbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}
.weborado-helper-topbar-icon img {
    height: 32px;
    width: auto;
    max-width: 180px;
    vertical-align: middle;
    display: block;
    margin-right: 150px;
}
.weborado-helper-topbar-right {
    display: flex;
    align-items: center;
}
.weborado-helper-topbar-btn {
    display: inline-block;
    padding: 6px 22px;
    font-size: 16px;
    font-weight: 500;
    color: #2271b1;
    background: #fff;
    border: 2px solid #2271b1;
    border-radius: 24px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    box-shadow: none;
    outline: none;
}
.weborado-helper-topbar-btn:hover, .weborado-helper-topbar-btn:focus {
    background: #2271b1;
    color: #fff;
    border-color: #135e96;
}
@media (max-width: 600px) {
    .weborado-helper-topbar {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 10px;
    }
    .weborado-helper-topbar-right {
        justify-content: flex-end;
        margin-top: 10px;
    }
} 