#scb-buttons {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scb-button {
  width: 60px;
  height: 60px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.scb-button:hover {
  background: #005a87;
}

.scb-button.scb-mail {
    background: #5C6C58 ;
}

.scb-button.scb-phone {
  background: #505569;
}

.scb-panel {
  position: fixed;
  top: 40%;
  right: -300px;
  width: 250px;
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  z-index: 9998;
  transition: right 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.scb-panel.active {
  right: 70px;
}

.scb-button.scb-mail .et-pb-icon,
.scb-button.scb-phone .et-pb-icon {
  font-size: 14px;
  line-height: 1;
  max-width: 40px;
  font-size: 30px;
}

.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  max-width: 100%;
}