/* === Mini Consent – Layout Fix === */

.mc-banner{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999999;

  display: flex;
  flex-wrap: wrap;              /* erlaubt Umbruch */
  align-items: center;
  gap: 10px;

  background: #2f7d32;          /* Seiten-Grün */
  color: #ffffff;

  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
}

/* Textbereich */
.mc-text{
  flex: 1 1 300px;              /* darf schrumpfen */
  min-width: 260px;
}

/* Link */
.mc-link{
  color: #e8f5e9;
  text-decoration: underline;
}

/* Button-Bereich */
.mc-actions{
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Buttons */
.mc-btn{
  background: #ffffff;
  color: #2f7d32;
  border: 1px solid #2f7d32;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* Hover */
.mc-btn:hover{
  background: #e8f5e9;
}

/* Ablehnen dezenter */
.mc-btn.mc-no{
  opacity: 0.85;
}

/* Mobile: Buttons unter Text */
@media (max-width: 600px){
  .mc-actions{
    width: 100%;
    justify-content: flex-end;
  }
}
