/* World History DB - Detail modal (used on study set pages too)
   Note: use very plain CSS; avoid theme conflicts.
*/
.tmdb-modal-backdrop{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999999;
  padding: 24px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
}
.tmdb-modal-backdrop.active{display:flex !important;}

.tmdb-modal{
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  padding: 18px 18px 16px;
  position: relative;
}

.tmdb-modal h3{
  margin: 0 0 12px;
  font-size: 18px;
}

.tmdb-modal-close{
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f2f2f2;
  cursor: pointer;
  font-size: 22px;
  line-height: 36px;
}

.tmdb-modal-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tmdb-modal-row{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: start;
}

.tmdb-modal-label{
  font-weight: 700;
  color: #333;
}

.tmdb-modal-val{
  color: #111;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.tmdb-modal-notes{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e6e6e6;
}

.tmdb-modal-notes-body{
  margin-top: 6px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 640px){
  .tmdb-modal-backdrop{padding: 14px;}
  .tmdb-modal-row{grid-template-columns: 1fr;}
}
