.gdpr-notification {
  display: none;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(85, 92, 106, .18);
  border-radius: 12px;
  bottom: 24px;
  box-shadow: 0 10px 30px rgba(85, 92, 106, .18);
  color: #4b5563;
  font-size: 14px;
  left: 50%;
  line-height: 1.45;
  max-width: 960px;
  padding: 18px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 999999;
}

.gdpr-notification-wrapper {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.gdpr-notification-text {
  flex: 1;
}

.gdpr-notification-description {
  margin-top: 4px;
}

.gdpr-notification-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.gdpr-notification a {
  color: #4c7af1;
  font-weight: 600;
  text-decoration: none;
}

.gdpr-notification a:hover {
  text-decoration: underline;
}

.gdpr-notification-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.gdpr-notification-button {
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  white-space: nowrap;
}

.gdpr-notification-button:focus-visible {
  outline: 3px solid rgba(76, 122, 241, .35);
  outline-offset: 2px;
}

.gdpr-notification-button-secondary {
  background: #fff;
  border-color: #d1d5db;
  color: #374151;
}

.gdpr-notification-button-primary {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

.gdpr-notification-button-secondary:hover {
  background: #f9fafb;
}

.gdpr-notification-button-primary:hover {
  background: #16a34a;
  border-color: #16a34a;
}

@media (max-width: 760px) {
  .gdpr-notification-wrapper {
    align-items: stretch;
    display: block;
  }

  .gdpr-notification-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .gdpr-notification-button {
    width: 100%;
  }
}
