
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.90);
  color: white;
  z-index: 9999;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
}

#cookie-banner p {
  margin: auto;
  font-size: 18px;
  line-height: 1.4;
  max-width: 50%;
}


/* Layout tlačítek - rovnoměrné rozložení */
#cookie-banner .button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

#cookie-banner .redirect-button {
        margin: 1%
}

@media screen and (max-width: 1001px) {
   #cookie-banner p {    
        max-width: 90%;
        margin-bottom: 10px;
   } 
}


