.gcfr-wrap,
.gcfr-wrap *{
  box-sizing: border-box;
}

/* Panel styling voor beide blokken */
.gcfr-panel{
  background: var(--gcfr-bg, #fff);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 16px 18px;
}

.gcfr-intro{
  margin-bottom: 12px;
}

/* Uitklapbox */
.gcfr-box{
  position: relative;
  overflow: hidden;
  max-height: 220px; /* via JS */
  transition: max-height 260ms ease;
}

/* Fade */
.gcfr-fade{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 90px; /* via JS */
  pointer-events:none;
  opacity:1;
  transition: opacity 160ms ease;
}

/* Acties */
.gcfr-actions{
  margin-top: 10px;
}
.gcfr-actions.gcfr-align-left{ text-align:left; }
.gcfr-actions.gcfr-align-center{ text-align:center; }
.gcfr-actions.gcfr-align-right{ text-align:right; }

/* Toggle */
.gcfr-toggle{
  cursor:pointer;
  font:inherit;
  border:0;
  background:none;
  padding:0;
  line-height:1.2;
  text-decoration: underline;
}

.gcfr-toggle.gcfr-button{
  text-decoration: none;
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
}

.gcfr-wrap.is-expanded .gcfr-fade{ opacity: 0; }

.gcfr-wrap.is-static .gcfr-actions{ display:none; }
.gcfr-wrap.is-static .gcfr-fade{ display:none; }