#gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f5f5f5;
    color: #333;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    border-top: 1px solid #ddd;
}

.gdpr-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.gdpr-banner-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.gdpr-banner-buttons a {
    color: #666;
    text-decoration: underline;
    font-size: 13px;
    white-space: nowrap;
}

.gdpr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
}

.gdpr-btn:hover {
    opacity: 0.85;
}

.gdpr-btn-accept {
    background: #4CAF50;
    color: white;
}

.gdpr-btn-reject {
    background: #999;
    color: white;
}

@media (max-width: 768px) {
    .gdpr-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gdpr-banner-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}
