#fc-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 420px;          /* kleiner */
  max-width: calc(100% - 30px);

  background: #111;
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 9999;

  font-size: 14px;
  line-height: 1.4;
  background-color:white;
}

#fc-banner.fc-pos-left {
  left: 20px;
  transform: none;
}

#fc-banner.fc-pos-center {
  left: 50%;
  transform: translateX(-50%);
}

#fc-banner.fc-pos-right {
  right: 20px;
  left: auto;
  transform: none;
}

#fc-banner p {
  margin: 0 0 14px 0;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.4;
  color:black;
}

#fc-banner label {
  margin-right: 14px;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.9;
  color:black;
}

#fc-banner input[type="checkbox"] {
  margin-right: 6px;
  accent-color: #4f7cff;
}

@media (max-width: 768px) {

  #fc-banner.fc-mobile-center {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: 92%;
    max-width: 420px;
  }

}

/* Buttons schöner */
#fc-banner button {
  margin-top: 14px;
  margin-right: 10px;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}

/* Primary (Accept) */
#fc-banner button:nth-of-type(1) {
  background: #4f7cff;
  color: white;
}

#fc-banner button:nth-of-type(1):hover {
  background: #3b66ff;
}

/* Reject */
#fc-banner button:nth-of-type(2) {
  background: #2a2a2a;
  color: #fff;
}

#fc-banner button:nth-of-type(2):hover {
  background: #3a3a3a;
}



/* Save */
#fc-banner button:nth-of-type(3) {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

#fc-banner button:nth-of-type(3):hover {
  background: rgba(255,255,255,0.08);
}

/*Modal*/
#fc-settings-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  backdrop-filter: blur(4px);
}

#fc-settings-modal > div {
  background: #111;
  color: #fff;
  width: 420px;
  max-width: 92%;
  margin: 10% auto;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  font-family: system-ui, sans-serif;
}

#fc-settings-modal button {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
}

#modal-save {
  background: #4f46e5;
  color: white;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.25);
}

#modal-save:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

#modal-close {
  background: #2a2a2a;
  color: #ddd;
  border: 1px solid #3a3a3a;
}

#modal-close:hover {
  background: #3a3a3a;
  color: #fff;
  transform: translateY(-1px);
}


/*GOOGLE MAPS*/

.fc-placeholder {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.fc-placeholder-inner button {
  margin-top: 10px;
  padding: 10px 14px;
  background: #4f46e5;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

#fc-btn-settings{
	background-color:white;
	color:black;
}

@media (max-width: 768px) {
  #fc-open-settings {
    display: none !important;
  }
}