/* Modal (popup) för meddelanden – använder bara .msg-modal-* så den inte påverkar annat */
.msg-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}
.msg-modal-overlay.is-open{ display: flex; }

.msg-modal{
  width: min(980px, 100%);
  height: min(720px, 92vh);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.msg-modal-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
}

.msg-modal-title{
  font-weight: 800;
  font-size: 14px;
}

.msg-modal-close{
  appearance: none;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.msg-modal-iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
}

@media (max-width: 520px){
  .msg-modal-overlay{ padding: 10px; }
  .msg-modal{ height: 94vh; border-radius: 14px; }
}
