/* GMW Smart-Bar */
.gmw-smart-bar {
    background: var(--bm-gmw-smartbar-bg, #f7f4ed);
    border: 1px solid var(--bm-gmw-smartbar-border, #e5dfd0);
    color: var(--bm-gmw-smartbar-text, #2b2b2b);
    padding: 0.8rem 1rem;
    position: relative;
}

.gmw-smart-bar__inner {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 20px;
    text-align: center;
    padding-right: 2.5rem;
}

.gmw-smart-bar__link {
    color: var(--bm-gmw-smartbar-link, #7b3a2f);
    font-weight: 700;
    text-decoration: none;
}

.gmw-smart-bar__link:hover {
    color: var(--bm-gmw-smartbar-link-hover, #7b3a2f);
    text-decoration: underline;
}

.gmw-smart-bar__debug {
    color: var(--bm-gmw-smartbar-text, #2b2b2b);
    font-size: 12px;
    opacity: 0.7;
    margin-left: 8px;
    white-space: normal;
}

.gmw-smart-bar__close {
    align-items: center;
    background: var(--bm-gmw-smartbar-close-bg, transparent);
    border: 1px solid var(--bm-gmw-smartbar-close-border, #e5dfd0);
    border-radius: 999px;
    color: var(--bm-gmw-smartbar-close-text, #2b2b2b);
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    height: 22px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
}

.gmw-smart-bar__close:hover {
    background: var(--bm-gmw-smartbar-close-hover-bg, transparent);
    border-color: var(--bm-gmw-smartbar-close-hover-border, #7b3a2f);
    color: var(--bm-gmw-smartbar-close-hover-text, #7b3a2f);
}
