/* ============================================================
   Universal GDPR cookie consent banner styles
   Used across all sites/languages.
   Brand color: #45aab8
   ============================================================ */

#sqp-consent-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483647;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #45aab8;
  padding: 20px;
  font-family: Arial, sans-serif;
  max-height: 90vh;
  overflow-y: auto;
  display: none;
  box-sizing: border-box;
}

#sqp-consent-panel.sqp-visible {
  display: block;
}

.sqp-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.sqp-consent-text {
  flex: 1 1 60%;
  min-width: 280px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.sqp-consent-text strong {
  color: #2c5a63;
}

.sqp-consent-text a {
  color: #45aab8;
  text-decoration: underline;
}

.sqp-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}

.sqp-consent-buttons button {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 500;
  transition: background 0.2s, opacity 0.2s;
  font-family: inherit;
}

.sqp-btn-reject {
  background: #f1f1f1;
  color: #333;
  border-color: #ccc;
}

.sqp-btn-reject:hover {
  background: #e5e5e5;
}

.sqp-btn-settings {
  background: #ffffff;
  color: #45aab8;
  border-color: #45aab8;
}

.sqp-btn-settings:hover {
  background: #f0fafc;
}

.sqp-btn-accept {
  background: #45aab8;
  color: #ffffff;
}

.sqp-btn-accept:hover {
  background: #3793a0;
}

#sqp-consent-settings {
  display: none;
  flex: 1 1 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

#sqp-consent-settings.open {
  display: block;
}

#sqp-consent-settings label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  cursor: pointer;
}

#sqp-consent-settings input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
}

.sqp-cat-desc {
  margin: 4px 0 0 24px;
  font-size: 12px;
  color: #666;
}

@media (max-width: 600px) {
  .sqp-consent-buttons {
    width: 100%;
  }
  .sqp-consent-buttons button {
    flex: 1;
    min-width: 90px;
  }
}
