/* Global styles */

/* Container for variable insertion buttons block */
.custom-btn-div {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  background-color: #fafbfb;
  margin-bottom: 12px;
}

/* Row of variable buttons */
.variable-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* Individual variable button */
.variable-btn {
  appearance: none;
  border: 1px solid #c4cdd5;
  background-color: #ffffff;
  color: #202223;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.variable-btn:hover {
  background-color: #f6f6f7;
  border-color: #aeb4b9;
}

.variable-btn:active {
  background-color: #efefef;
  border-color: #8c9196;
}

.Polaris-Page {
  max-width: 100% !important;
}

