/* Button on the left side */
#openModalBtn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  padding: 10px 10px;
  background-color: #0089FF;
  color: white;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  z-index: 1000;
}

/* Small modal (hidden by default) */
#cookieModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; /* Small size */
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

/* Modal text */
#cookieModal p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

/* Buttons inside the modal */
.modal-buttons {
  display: flex;
  justify-content: space-between;
}

.modal-buttons button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
}

.accept-btn {
  background-color: #0089FF;
  color: white;
}

.close-btn {
  background-color: #ccc;
  color: black;
}