
#wpppb-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--wp-admin-theme-color, #111);
  color: #fff;
  padding: 16px;
  z-index: 999999;
  transform: translateY(100%);
  transition: transform .3s ease;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
}
#wpppb-bar.show{
  transform: translateY(0);
}
.wpppb-bar-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.wpppb-bar-text{
  font-size: 16px;
  font-weight: 500;
}
.wpppb-bar-actions{
  display:flex;
  gap:10px;
}
.wpppb-btn-primary{
  background:#fff;
  color:#000;
  border:none;
  padding:10px 16px;
  border-radius:6px;
  cursor:pointer;
  font-weight:600;
}
.wpppb-btn-secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,.6);
  color:#fff;
  padding:10px 16px;
  border-radius:6px;
  cursor:pointer;
}
@media(max-width:600px){
  .wpppb-bar-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .wpppb-bar-actions{
    width:100%;
    flex-direction:column;
  }
  .wpppb-btn-primary,
  .wpppb-btn-secondary{
    width:100%;
  }
}
