#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 15px;
  z-index: 10000;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  text-align: center;
}
#cookie-banner p {
  margin: 0 0 10px;
  line-height: 1.5;
}
#cookie-banner a {
  color: #4dabf7;
  text-decoration: none;
}
#cookie-banner .btn-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#cookie-banner button {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
#cookie-banner .accept {
  background: #2e7d32;
  color: #fff;
}
#cookie-banner .decline {
  background: #c62828;
  color: #fff;
}
@media (min-width: 768px) {
  #cookie-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
  }
  #cookie-banner p {
    margin: 0;
  }
  #cookie-banner .btn-container {
    gap: 15px;
  }
}
