.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  font-family: sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-text {
  font-size: 14px;
  margin: 0;
  max-width: 800px;
  line-height: 1.4;
}

.cookie-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s;
}

.cookie-btn:hover {
  background-color: #45a049;
}

.cookie-banner.hidden {
  display: none;
}