/* Consent Banner Styles */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.consent-banner.show {
    transform: translateY(0);
}

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

.consent-banner-text {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
}

.consent-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.consent-banner-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.consent-banner-btn.accept {
    background: #10b981;
    color: white;
}

.consent-banner-btn.accept:hover {
    background: #059669;
}

.consent-banner-btn.decline {
    background: #6b7280;
    color: white;
}

.consent-banner-btn.decline:hover {
    background: #4b5563;
}

.consent-banner-btn.settings {
    background: transparent;
    color: #9ca3af;
    border: 1px solid #4b5563;
}

.consent-banner-btn.settings:hover {
    background: #374151;
    color: white;
}

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

