#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  font-family: Arial, sans-serif;
}

#cookie-banner p {
  margin: 0 0 10px;
  text-align: center;
  font-size: 15px;
}

#cookie-banner button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

#cookie-banner button:hover {
  background-color: #45a049;
}

.reset-cookies {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #14213d;
  color: white;
  border: 1px solid #fca311;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 9999;
  transition: background 0.3s ease;
}

.reset-cookies:hover {
  background-color: #fca311;
  color: #000;
}

