#wpcc-banner {
    position: fixed;
    bottom: 20px!important;
    left: 20px!important;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 450px;
    width: auto;
    border: 1px solid #e0e0e0;
}

#wpcc-banner h2 {
    margin: 0.5rem 0 0.5rem 0;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}       

#wpcc-banner p {
    margin: 0 0 0.75rem 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

#wpcc-accept,
#wpcc-reject {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

#wpcc-accept {
    background: #007cba;
    color: white;
}

#wpcc-accept:hover {
    background: #005a87;
    transform: translateY(-1px);
}

#wpcc-reject {
    background: #f0f0f0;
    color: #333;
}

#wpcc-reject:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
    #wpcc-banner {
        position: fixed;
        bottom: 0!important;
        left: 0!important;
        right: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        border-top: 1px solid #e0e0e0;
        border-left: none;
        border-right: none;
        padding: 1rem;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    #wpcc-banner p {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }
    
    #wpcc-accept,
    #wpcc-reject {
        padding: 6px 12px;
        font-size: 13px;
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    #wpcc-accept {
        margin-right: 0;
    }
}
