/* Container */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  border-top: 2px solid #16b676;
  box-shadow: 0 -4px 20px rgba(255,255,255,0.4);
  padding: 20px;
  text-align: center;
  font-size: 14px;
  z-index: 9999;
  transition: bottom 1.2s ease-in-out;
}

/* vysunutá lišta */
.cookie-banner.show {
  bottom: 0;
}

/* Text */
.cookie-banner p {
  margin: 0 0 12px;
  color: #fff;
}

/* Close „X“ */
.cookie-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
}

/* Accept button */
.cookie-accept {
  background: #0066cc;  
  color: #fff;
  border: none;
  padding: 8px 18px;
  margin: 2px;  
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px; 
}

.cookie-accept:hover {
  background: #0080ff;  
  opacity: 0.9;
  transition: 0.2s ease;
}

