.cookie-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.coursor {
    z-index: 10000001 !important;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__panel {
  width: min(100%, 940px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(16, 18, 24, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  pointer-events: auto;
}

.cookie-consent__content {
  min-width: 0;
}

.cookie-consent__title {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.cookie-consent__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-consent__button {
  min-width: 112px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  transform: translateY(-1px);
}

.cookie-consent__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.cookie-consent__button--accept {
  background: #ffffff;
  color: #101218;
}

.cookie-consent__button--accept:hover,
.cookie-consent__button--accept:focus-visible {
  background: #f2f4f7;
}

.cookie-consent__button--decline {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
}

.cookie-consent__button--decline:hover,
.cookie-consent__button--decline:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-consent__panel {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
  }

  .cookie-consent__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-consent__button {
    width: 100%;
    min-width: 0;
  }
}
