.consent-panel {
  position: fixed;
  z-index: 1000;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff4d5;
  border: 1px solid rgba(255, 244, 213, 0.35);
  border-radius: 18px;
  background: #0d2733;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
}

.consent-panel strong {
  display: block;
  margin-bottom: 4px;
}

.consent-panel p {
  max-width: 65ch;
  margin: 0;
  color: #c9dbd7;
  font-size: 0.86rem;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.consent-actions button {
  min-height: 46px;
  padding: 10px 16px;
  color: #fff4d5;
  border: 1px solid currentColor;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.consent-actions [data-consent-allow] {
  color: #071824;
  border-color: #ffd34f;
  background: #ffd34f;
  font-weight: 900;
}

@media (max-width: 600px) {
  .consent-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions,
  .consent-actions button {
    width: 100%;
  }
}

