.terms-privacy-update-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 550px;
    background-color: #fff;
    color: #333;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1050;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.terms-privacy-banner-content {
    color: #222;
    display: flex;
    align-items: center;
}

.terms-privacy-banner-content p {
    margin: 0;
    font-size: 14px;
    flex-grow: 1;
}

.terms-privacy-banner-button {
    display: flex;
    flex-shrink: 0;
    margin-left: 12px;
}

.terms-privacy-btn {
    padding: 8px 16px;
    border: 1px solid #222;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    background-color: #fff;
    color: #222;
    text-decoration: none;
    display: inline-block;
}

.terms-privacy-btn:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {
    .terms-privacy-update-banner {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        bottom: 75px;
        padding: 15px;
    }
    .terms-privacy-banner-button {
        align-self: flex-end;
        margin-left: 0;
    }
}
