/* Normalisasi tombol dan cegah ikon dekoratif tampil ganda. */
.primary.small {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: max-content;
  padding: 0 18px !important;
  line-height: 1;
  white-space: nowrap;
}

.primary.small::before {
  content: none !important;
  display: none !important;
}

.outline-btn,
.danger-btn,
.edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1;
  white-space: nowrap;
}

.form-actions,
.report-actions,
.customizer-actions {
  gap: 10px;
}

.input-wrap .eye {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 -5px 0 7px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #71869a;
  overflow: hidden;
}

.input-wrap .eye:hover {
  background: #eaf3f7;
  color: var(--blue);
}

.input-wrap .eye [data-icon] {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  margin: 0;
}

.input-wrap .eye [data-icon]::before {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
}

button:disabled {
  cursor: not-allowed;
}

@media (max-width: 560px) {
  .primary.small,
  .form-actions .outline-btn,
  .form-actions .danger-btn {
    min-width: 0;
  }
}
