/* css/acf-font-fields.css */

/* Wrapper styling */
.acf-font-fields {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 20px 0;
  border-radius: 6px;
}
.acf-font-fields h3 { margin: 0}

/* Labels */
.acf-font-fields label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

/* Input veld */
.acf-font-fields input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* Select dropdown */
.acf-font-fields select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* Preview box */
.acf-font-fields #font_preview {
  padding: 10px;
  background: #fff;
  border: 1px dashed #aaa;
  font-size: 18px;
  text-align: center;
  min-height: 40px;
}