/* Cookie Banner Styles - GDPR Compliant */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    border-top: 3px solid #2563eb;
    animation: slideUp 0.3s ease-out;
    display: none;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.cookie-banner-text a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    color: #1d4ed8;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: #2563eb;
    color: white;
}

.cookie-accept:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cookie-reject {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.cookie-reject:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-banner-text {
        min-width: 100%;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-banner button {
        flex: 1;
        min-width: 120px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .cookie-banner {
        background: rgba(31, 41, 55, 0.98);
        border-top-color: #3b82f6;
    }
    
    .cookie-banner-text {
        color: #e5e7eb;
    }
    
    .cookie-banner-text strong {
        color: #f9fafb;
    }
    
    .cookie-reject {
        background: #374151;
        color: #e5e7eb;
        border-color: #4b5563;
    }
    
    .cookie-reject:hover {
        background: #4b5563;
        border-color: #6b7280;
    }
}
