.ui3-banner {
    background-color: #f2f2f2;
    position: fixed;
    color: #000;
    bottom: 0;
    width: 100dvw;
    min-height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9000;
}

.ui3-banner > div {
    justify-self: center;
    color: #000;
    height: max-content;
    display: flex;
    align-items: center;
    font-size: 1rem;
    gap: 1rem;

}

.ui3-link {
    display: inline-block;
    padding: 4px 12px;
    background-color: #3A8CFF;
    border-radius: 4px;
    color: #fff;
    font-size: 0.8rem;
}

.hide-banner {
    background: rgb(0, 124, 186);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
}

.hide-banner .chevron {
    width: 24px;
    height: 24px;
}

.show-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.show-banner .chevron {
    width: 24px;
    height: 24px;
}

.ui3-banner-minimized {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #007cba;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    font-size: 24px;
    font-weight: bold;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}
