/* Simple cookie consent styles */
#cookie-consent{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.85);
  color:#fff;
  z-index:9999;
  display:none;
  padding:15px 10px;
  font-size:15px;
}
#cookie-consent.cookie-consent--visible{
  display:block;
}
#cookie-consent .cookie-consent__inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
#cookie-consent .cookie-consent__message{
  margin:0;
  flex:1 1 60%;
}
#cookie-consent .cookie-consent__actions{
  flex:0 0 auto;
  display:flex;
  gap:8px;
  align-items:center;
}
#cookie-consent .cookie-consent__more{
  color:#ddd;
  text-decoration:underline;
  margin-left:8px;
}

@media (max-width:600px){
  #cookie-consent .cookie-consent__inner{padding:10px;}
  #cookie-consent .cookie-consent__message{flex-basis:100%;}
  #cookie-consent .cookie-consent__actions{flex-basis:100%; justify-content:flex-end}
}
