#cookiebar {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  color: #1e223d;
  padding: 20px 10px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  font-size:2rem; 
}

.cookiebar-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align:center;
  line-height:1.5em;
}

.cookiebar-content p {
  margin: 0;
  font-size: 14px;
}

.cookiebar-content a {
  color: #1e223d;
  text-decoration: none;
  font-weight:bold;
}

.cookiebar-buttons {

  gap: 10px;
  flex-wrap: wrap;  
  text-align:center;
}

.cookiebar-buttons button {
  padding: 8px 16px;
  border: none;
  background-color: #1e223d;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-size:1.5rem;  
  margin-bottom:0.5em ;
}

.cookiebar-buttons button:hover {
  background-color: #df6967;
}

@media (max-width: 600px) {
  .cookiebar-content {
    padding: 0 10px;
  }

  .cookiebar-buttons {
    flex-direction: column;
  }

  .cookiebar-buttons button {
    width: 100%;
  }
}