/* Кнопка в хедере */
.callme-btn {
  padding: 8px 14px;
  border: 1px solid #00a651;
  background: #00a651;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
}
.callme-btn:hover { background: #009148; }

/* Модальное окно (контейнер) */
.callme-modal { display: none; }

/* Подложка */
.callme-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
}

/* Окно */
.callme-dialog {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  max-width: 480px;
  width: 92%;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 9999;
}

/* Заголовок */
.callme-header {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
.callme-header button {
  border: 0; background: transparent;
  font-size: 20px; line-height: 1; cursor: pointer;
}

/* Тело */
.callme-body { padding: 16px; text-align: left; }

/* Элементы формы */
.callme-body label { display: block; margin-bottom: 10px; font-size: 14px; text-align: left; }
.callme-body input[type="text"], .callme-body textarea {
  width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 3px;
  font-size: 14px; direction: ltr; text-align: left;
}
.callme-body textarea { resize: vertical; }

.callme-body button[type="submit"] {
  padding: 10px 16px; cursor: pointer;
  background: #00a651; color: #fff; border: 1px solid #00a651;
  border-radius: 3px; font-size: 14px;
}
.callme-body button[type="submit"]:hover { background: #009148; }

.callme-success h3 { margin: 0 0 8px 0; font-size: 18px; }
.callme-success p  { margin: 0 0 12px 0; font-size: 14px; }
.callme-success-actions { text-align: right; }
.callme-error { margin-top: 10px; font-size: 13px; color: #b00020; }

/* --- финальные оверрайды (должны быть последними в файле) --- */
.callme-modal{
  display:none !important;
  position:fixed; left:0; top:0; right:0; bottom:0;
  z-index:2147483647; /* поверх всего */
}
.callme-modal.is-open{ display:block !important; }
.callme-overlay{ z-index:0; }
.callme-dialog{ z-index:1; }
