/* rodo-style.css — minimalny styl modala, bez konfliktu z Bootstrapem */

.rodo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rodo-modal {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  max-width: 700px;
  width: 92%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.rodo-modal h2 { margin-top: 0; }
.rodo-modal .actions { margin-top: 12px; display:flex; gap:8px; justify-content:flex-end; }
.rodo-btn { padding:8px 12px; border-radius:6px; border:1px solid #bbb; background:#f7f7f7; cursor:pointer; }
.rodo-btn.primary { background:#007bff; color:#fff; border-color:#007bff; }
.rodo-link { background:none; border:none; color:#007bff; text-decoration:underline; cursor:pointer; }
