body {
  overflow-x: hidden !important;
}

/* TODO: Stick the cookie popup so that it remains on screen until interacted with */

.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 90%;
  transform: translateX(-50%);
  background: #fff;
  color: #222;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 18px 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  max-width: 90vw;
  font-size: 1rem;
}
.cookie-popup button {
  margin: 0 6px;
  padding: 6px 18px;
  border: none;
  border-radius: 4px;
  background: #0078d4;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.cookie-popup button#cookie-readmore {
  background: #eee;
  color: #0078d4;
  border: 1px solid #0078d4;
}
.cookie-popup button:hover {
  background: #005fa3;
}
.cookie-popup button#cookie-readmore:hover {
  background: #e0e0e0;
}

@media (max-width: 480px) {
  .cookie-popup {
    left: 0%;
    transform: translateX(-50%);
    transform: translateY(-50%);
    padding: 14px 20px;
    font-size: x-small;
  }
  .cookie-popup button {
    padding: 6px 14px;
    font-size: 0.9rem;
  }
}
