#cookie-consent-box {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 30px;
  background: linear-gradient(90deg, #4b6cb7, #182848);
  color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}

#cookie-consent-box.is-visible {
  display: flex;
}

#cookie-consent-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

#cookie-consent-box a {
  color: #fff;
  text-decoration: underline;
}

#cookie-consent-box .cookie-buttons {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

#cookie-consent-box button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 40px;
  padding: 8px 18px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #4b6cb7;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  z-index: 1;
}

#cookie-consent-box button::before,
#cookie-consent-box button::after {
  content: none !important;
}

#cookie-consent-box .close-btn {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

@media (max-width: 767px) {
  #cookie-consent-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px;
  }
}
