/* Cookie Consent Banner Styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dark #cookie-consent-banner {
  background: rgba(31, 41, 55, 0.98);
  border-top-color: #374151;
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  flex: 1;
}

.dark .cookie-consent-text {
  color: #d1d5db;
}

.cookie-consent-link {
  color: #6366f1;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-consent-link:hover {
  color: #4f46e5;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.cookie-btn-reject {
  background: #f3f4f6;
  color: #374151;
}

.dark .cookie-btn-reject {
  background: #374151;
  color: #d1d5db;
}

.cookie-btn-reject:hover {
  background: #e5e7eb;
}

.dark .cookie-btn-reject:hover {
  background: #4b5563;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 150px;
  }
}
