#iprs-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    z-index: 99999;
    transform: translateY(-100%);
    transition: transform .3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
    font-family: inherit;
}

#iprs-banner.show {
    transform: translateY(0);
}

.iprs-inner {
    max-width: 1200px;
    margin: auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.iprs-text {
    font-size: 14px;
}

.iprs-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.iprs-switch {
    background: #2271b1;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.iprs-switch:hover {
    background: #135e96;
}

.iprs-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
