.ssfe-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 99999;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #131a25;
  color: #fff;
  box-shadow: 0 18px 48px rgba(10, 13, 18, 0.32);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.ssfe-consent[hidden],
.ssfe-consent-manage[hidden] {
  display: none !important;
}

.ssfe-consent__title {
  margin: 0 0 6px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.ssfe-consent__text {
  margin: 0;
  color: #e6e8eb;
}

.ssfe-consent__text a {
  color: #ffd200;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ssfe-consent__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

.ssfe-consent__button,
.ssfe-consent-manage {
  min-height: 44px;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.ssfe-consent__button {
  min-width: 132px;
  padding: 10px 18px;
  border: 1px solid #fff;
}

.ssfe-consent__button--reject {
  background: transparent;
  color: #fff;
}

.ssfe-consent__button--accept {
  border-color: #e10600;
  background: #e10600;
  color: #fff;
}

.ssfe-consent__button:focus-visible,
.ssfe-consent-manage:focus-visible {
  outline: 3px solid #ffd200;
  outline-offset: 3px;
}

.ssfe-consent-manage {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 99998;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #131a25;
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 13, 18, 0.25);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
}

@media (max-width: 560px) {
  .ssfe-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 17px;
  }

  .ssfe-consent__actions {
    flex-direction: column-reverse;
  }

  .ssfe-consent__button {
    width: 100%;
  }
}

