/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 12 2025 | 18:00:07 */
/* 2025.09.12 - Kingsley */
.cmplz-cookiebanner {
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  position: fixed; /* or absolute if that's your case */
  margin: 0 auto;
  box-sizing: border-box;
}

/* Ensure the inner content wraps */
.cmplz-cookiebanner .cmplz-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px; /* space between buttons */
}

.cmplz-cookiebanner .cmplz-btn {
  flex: 1 1 auto;        /* buttons shrink/grow naturally */
  min-width: 100px;      /* prevents them from getting too tiny */
  max-width: 100%;       /* prevents overflow */
  box-sizing: border-box;
}

