/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-consent-bottom {
    bottom: 0;
}

.cookie-consent-top {
    top: 0;
}

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

.cookie-consent-text-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-consent-image {
    flex-shrink: 0;
}

.cookie-consent-image img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.cookie-consent-message {
    flex: 1;
}

.cookie-consent-learn-more {
    color: #3498db;
    text-decoration: underline;
    margin-left: 5px;
}

.cookie-consent-learn-more:hover {
    color: #2980b9;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    min-width: 80px;
}

.cookie-consent-accept {
    background-color: #27ae60;
    color: white;
}

.cookie-consent-accept:hover {
    background-color: #219a52;
}

.cookie-consent-decline {
    background-color: #95a5a6;
    color: white;
}

.cookie-consent-decline:hover {
    background-color: #7f8c8d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text-section {
        min-width: auto;
        margin-bottom: 10px;
        justify-content: center;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-consent-btn {
        flex: 1;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-btn {
        max-width: none;
        width: 100%;
    }
}