/* Cookie Consent Banner styles */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #ffffff;
  padding: 1rem 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  font-family: 'Lato', Arial, sans-serif;
}

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

.cookie-consent-text {
  flex: 1 1 400px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-consent-text a {
  color: #f2c94c;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid #ffffff;
  transition: opacity 0.2s ease;
}

.cookie-consent-btn:hover {
  opacity: 0.85;
}

.cookie-consent-btn-solid {
  background: #f2c94c;
  color: #1a1a1a;
  border-color: #f2c94c;
}

.cookie-consent-btn-outline {
  background: transparent;
  color: #ffffff;
}

@media (max-width: 600px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-actions {
    justify-content: flex-end;
  }
}
