#qt-cookie-banner > div {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  max-width: 460px;
  width: 90%;
  background: #f9f9f9;
  color: #1d1d1f;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 999999;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

#qt-cookie-banner > div span {
  text-align: center;
  color: #333333;
}

#qt-cookie-banner button {
  min-width: 110px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

#qt-cookie-banner #qt-accept {
  background-color: #34c759;
  color: #fff;
  border: 1px solid #34c759;
}

#qt-cookie-banner #qt-accept:hover {
  background-color: #28a745;
  border-color: #28a745;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

#qt-cookie-banner #qt-deny {
  background-color: transparent;
  color: #ff3b30;
  border: 1px solid #ff3b30;
}

#qt-cookie-banner #qt-deny:hover {
  background-color: #ff3b30;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

#qt-cookie-banner > div .button-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
