#ccc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-top: 3px solid #088178;
}

.ccc-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ccc-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
}

.ccc-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.ccc-accept {
    background: #088178;
    color: #fff;
    border: 2px solid #088178;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ccc-accept:hover {
    background: #077069;
    border-color: #077069;
}

.ccc-decline {
    background: transparent;
    color: #fff;
    border: 2px solid #666;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ccc-decline:hover {
    background: #666;
    border-color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #ccc-banner {
        padding: 15px;
    }
    
    .ccc-content p {
        font-size: 13px;
    }
    
    .ccc-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ccc-accept,
    .ccc-decline {
        width: 100%;
        max-width: 200px;
    }
}
