.wpcb-banner {
    position: fixed;
    z-index: 999999;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.wpcb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.wpcb-text {
    flex: 1;
    margin-right: 20px;
    line-height: 1.5;
}

.wpcb-text p {
    margin: 0 0 5px 0;
}

.wpcb-text-align-left {
    text-align: left;
}

.wpcb-text-align-center {
    text-align: center;
}

.wpcb-text-align-right {
    text-align: right;
}

.wpcb-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wpcb-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.wpcb-text a {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .wpcb-banner {
        left: 10px !important;
        right: 10px !important;
        max-width: calc(100% - 20px);
    }
    
    .wpcb-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wpcb-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
}