

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222 !important;
  color: #fff;
  padding: 1.2rem;
  z-index: 9999;
  display: none; /* hidden by default */
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  flex: 1 1 70%;
}

.cookie-content a {
  color: #dde3e9;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;           
  justify-content: center;   
  gap: 3rem;                 
  margin-top: 1rem;
}

#cookie-accept{
  color:black !important;
background-color: #cceee4;
}



.cookie-buttons button {

  
  border: none;
  padding: 0.2rem 1.2rem;
  border-radius: 4px;
  color: #141414;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cookie-buttons #cookie-accept:hover {
  background-color: #f8f4f4;
}

.cookie-buttons #cookie-decline {
  background-color: #303233;
}

.cookie-buttons #cookie-decline:hover {
  background-color: #666;
}