/* Container zentriert im Grid statt full width */
.plm-watchlist-grid{
  max-width: 1100px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 34px;
  align-items: start;
}

@media (max-width: 900px){
  .plm-watchlist-grid{
    grid-template-columns: 1fr;
  }
}

/* Left */
.plm-watchlist-img{
  width: 50%;
  display: block;
  margin: 0 auto 14px auto;
  border-radius: 12px;
}

.plm-watchlist-title{
  padding: 8px;
  margin: 0 0 10px 0;
}

.plm-watchlist-desc{
  padding: 8px;
  line-height: 1.6em;
  font-size: 16px;
  opacity: .95;
}

/* Right */
.plm-watchlist-info{
  margin: 0 0 14px 0;
  opacity: .95;
  font-size: 16px;
  line-height: 1.6em;
}

/* Inputs */
.plm-watchlist-input{
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 12px;
  margin: 0 0 10px 0;
}

/* Button */
.plm-watchlist-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background: var(--bg-dark);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.plm-watchlist-btn:hover{
  opacity: .92;
}

/* Separator */
.plm-watchlist-sep{
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 20px 0;
}

/* Status (kein undefined) */
.plm-watchlist-status{
  margin: 10px 0 12px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
}
.plm-watchlist-gamification{
  margin-top: 18px; /* Abstand zur Liste */
  opacity: .95;
}
.plm-entry{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  margin-bottom: 10px;
}

.plm-remove{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: #d32f2f; /* rot */
  color: #fff;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.plm-remove:hover{
  opacity: .92;
}
.plm-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.plm-modal.is-open{
  display: block;
}

.plm-modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
}

.plm-modal-box{
  position: relative;
  width: min(520px, 92vw);
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  padding: 14px;
}

.plm-modal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom: 10px;
}

.plm-modal-title{
  font-weight: 800;
  font-size: 16px;
}

.plm-modal-x{
  border:0;
  background: transparent;
  cursor:pointer;
  font-size: 18px;
  padding: 6px 8px;
  border-radius: 10px;
}

.plm-modal-x:hover{
  background: rgba(0,0,0,.06);
}

.plm-modal-body{
  font-size: 14px;
  opacity: .95;
  margin-bottom: 14px;
}

.plm-modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

.plm-modal-cancel{
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
}

.plm-modal-danger{
  border: 0;
  background: #d32f2f;
  color:#fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
}
