.oenot-consent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 14px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #1f2937;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.oenot-consent--visible {
  opacity: 1;
  transform: translateY(0);
}

.oenot-consent__text {
  margin: 0 0 10px 0;
}

.oenot-consent__link {
  color: #004AAD;
  text-decoration: underline;
}

.oenot-consent__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.oenot-consent__btn {
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 150ms ease;
}

.oenot-consent__btn--decline {
  background: transparent;
  color: #4b5563;
}

.oenot-consent__btn--decline:hover {
  background: rgba(0, 0, 0, 0.05);
}

.oenot-consent__btn--accept {
  background: #004AAD;
  color: #ffffff;
}

.oenot-consent__btn--accept:hover {
  background: #003a8c;
}

@media (max-width: 480px) {
  .oenot-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
