.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 15px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

#cookie-accept {
  background: #4CAF50;
  color: white;
}

#cookie-reject {
  background: #f44336;
  color: white;
}