#cookieConsentPopup {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: lightgrey;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  animation: slideUp 1s ease-out forwards;
}

.hidden {
  display: none !important;
}

/* Your existing animations and media queries */
@keyframes slideUp {
  from { bottom: -100px; }
  to { bottom: 0; }
}

@media (max-width: 768px) {
  #cookieConsentPopup {
    font-size: 14px;
    padding: 10px;
  }

  #cookieConsentPopup button {
    margin-top: 10px;
    padding: 10px 20px;
  }
}