/* Cookie Consent Banner Styles */
#cookieConsentBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 20px;
  animation: slideUp 0.3s ease-out;
}

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

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

.cookie-consent-content {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-content p {
  margin: 0 0 8px 0;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-consent-links {
  margin: 0;
}

.cookie-consent-links a {
  color: #1F7AE0;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(31, 122, 224, 0.3);
  transition: all 0.2s ease;
}

.cookie-consent-links a:hover {
  color: #1663B9;
  border-bottom-color: #1663B9;
}

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-accept {
  background: #1F7AE0;
  color: white;
}

.cookie-accept:hover {
  background: #1663B9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 122, 224, 0.3);
}

.cookie-decline {
  background: #f1f5f9;
  color: #475569;
}

.cookie-decline:hover {
  background: #e2e8f0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #cookieConsentBanner {
    padding: 16px;
  }

  .cookie-consent-container {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-consent-content {
    min-width: 100%;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
