/* public/cookie-consent.css */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #16213e;
  color: #e0e0e0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.875rem;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1;
}

#cookie-consent-banner button {
  background: #4285f4;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

#cookie-consent-banner button:hover {
  background: #3367d6;
}

@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }
}
