.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  display: none;
}

.cookie-consent p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
}

.cookie-consent button {
  background-color: #4CAF50;
  color: white;
  margin-top: 5px;
  padding: 8px 16px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
}

/* Responsiviteit voor kleinere schermen */
@media screen and (max-width: 600px) {
  .cookie-consent p {
    max-width: 300px;
      font-size: 12px;
  }

  .cookie-consent button {
      padding: 8px 12px;
      font-size: 12px;
  }
}
