#planout-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: rgba(50, 50, 58, 0.97);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#planout-cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

#planout-cookie-banner .pcb-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

#planout-cookie-banner .pcb-text {
  flex: 1 1 420px;
  margin: 0;
}

#planout-cookie-banner .pcb-text a {
  color: #7ee8df;
  text-decoration: underline;
}

#planout-cookie-banner .pcb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#planout-cookie-banner .pcb-btn {
  border: 0;
  border-radius: 3px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.2;
}

#planout-cookie-banner .pcb-btn-accept {
  background: #00a99d;
  color: #fff;
}

#planout-cookie-banner .pcb-btn-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

#planout-cookie-banner .pcb-btn:hover,
#planout-cookie-banner .pcb-btn:focus {
  filter: brightness(1.05);
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

#planout-cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
}

#planout-cookie-panel.is-open {
  display: flex;
}

#planout-cookie-panel .pcp-dialog {
  width: min(520px, 100%);
  background: #fff;
  color: #222;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

#planout-cookie-panel h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

#planout-cookie-panel p {
  margin: 0 0 16px;
}

#planout-cookie-panel .pcp-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #e8e8e8;
}

#planout-cookie-panel .pcp-row strong {
  display: block;
}

#planout-cookie-panel .pcp-row small {
  color: #666;
}

#planout-cookie-panel .pcp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#planout-cookie-panel .pcp-btn {
  border: 0;
  border-radius: 3px;
  padding: 10px 16px;
  cursor: pointer;
  background: #00a99d;
  color: #fff;
}

#planout-cookie-panel .pcp-btn-secondary {
  background: #eee;
  color: #222;
}

@media (max-width: 640px) {
  #planout-cookie-banner .pcb-inner {
    padding: 14px 16px;
  }

  #planout-cookie-banner .pcb-actions {
    width: 100%;
  }

  #planout-cookie-banner .pcb-btn {
    flex: 1 1 auto;
  }
}
