/* Reset box sizing for stability */
.ofm-mosaic, .ofm-mosaic * { box-sizing: border-box; }

/* Mozaik konténer */
.ofm-mosaic {
  display: grid;
  gap: 12px;
  padding: 8px;
}

/* Mobile-first: telefonon 2 oszlop */
@media (max-width: 599px) {
  .ofm-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Nagyobb képernyőn 3 oszlop */
@media (min-width: 600px) {
  .ofm-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tile stílus */
.ofm-tile {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px;
  border-radius: 6px;
  display:flex;
  flex-direction:column;
  gap:6px;
  min-height: 80px;
  align-items: flex-start;
  justify-content: center;
  transition: transform .12s ease;
}
.ofm-tile:hover { transform: translateY(-3px); box-shadow: 0 6px 14px rgba(0,0,0,0.06); cursor:pointer }

/* Tile cím és meta */
.ofm-tile .name { font-weight:600; color:#1a1a1a; font-size:14px; }
.ofm-tile .meta { font-size:12px; color:#666; }

/* Modal alap */
.ofm-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.ofm-modal-backdrop.active { display:flex; }

.ofm-modal {
  background: #fff;
  width: 96%;
  max-width: 760px;
  border-radius: 8px;
  padding: 18px;
  max-height: 90vh;
  overflow-y:auto;
}

/* Form mezők */
.ofm-form-row { margin-bottom: 10px; }
.ofm-form-row label { display:block; font-size:13px; margin-bottom:4px; color:#333 }
.ofm-form-row input[type="text"], .ofm-form-row input[type="email"], .ofm-form-row textarea {
  width:100%;
  padding:8px 10px;
  border:1px solid #cfcfcf;
  border-radius:4px;
  font-size:14px;
  color:#111;
}

/* Sample text (light) */
.ofm-sample { color: #9b9b9b; }

/* Hibajelzés */
.ofm-error { border-color: #d9534f !important; box-shadow: 0 0 0 3px rgba(217,83,79,0.06); }
.ofm-error-text { color:#d9534f; font-size:13px; margin-top:6px; }

/* Gombok */
.ofm-buttons { display:flex; gap:8px; justify-content:flex-end; margin-top:12px; }
.ofm-btn { padding:8px 14px; border-radius:5px; border:none; cursor:pointer; }
.ofm-btn.primary { background:#0073aa; color:#fff; }
.ofm-btn.ghost { background:#f5f5f5; color:#222; }

/* Levél előnézet content */
.ofm-preview-body { white-space: pre-wrap; font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color:#111; line-height:1.45; }

/* Mobil: modal teljes szélesség */
@media (max-width:420px) {
  .ofm-modal { padding:12px; }
}