/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    margin: 0;
    padding-right: 20px;
    flex: 1;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
    }
    
    .cookie-consent-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
}
