.tmdb-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.tmdb-modal-overlay.active {
  display: flex;
}

.tmdb-modal {
  background: #262626;
  border-radius: 8px;
  padding: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.tmdb-modal h3 {
  margin-bottom: 16px;
}

.tmdb-search-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.tmdb-search-row input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #353535;
  border-radius: 4px;
  background: #1e1e1e;
  color: #c5c5c5;
  font-size: 14px;
}

.tmdb-search-row button {
  padding: 8px 16px;
  background: #4a7c7c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.tmdb-results {
  overflow-y: auto;
  flex: 1;
}

.tmdb-result-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #353535;
  cursor: pointer;
  border-radius: 4px;
}

.tmdb-result-item:hover {
  background: #353535;
}

.tmdb-result-item img {
  width: 46px;
  height: 69px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.tmdb-result-poster-placeholder {
  width: 46px;
  height: 69px;
  background: #353535;
  border-radius: 4px;
  flex-shrink: 0;
}

.tmdb-result-info {
  flex: 1;
  min-width: 0;
}

.tmdb-result-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.tmdb-result-year {
  color: #888;
  font-size: 13px;
  margin-bottom: 4px;
}

.tmdb-result-overview {
  color: #888;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tmdb-modal-close {
  margin-top: 12px;
  padding: 8px 16px;
  background: #353535;
  color: #c5c5c5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  align-self: flex-end;
}

.tmdb-loading {
  color: #888;
  text-align: center;
  padding: 20px;
}

.tmdb-id-section {
  border-top: 1px solid #353535;
  margin-top: 12px;
  padding-top: 12px;
}

.tmdb-id-label {
  color: #888;
  font-size: 13px;
  margin-bottom: 8px;
}

.letterboxd-section {
  border-top: 1px solid #353535;
  margin-top: 12px;
  padding-top: 12px;
}

.letterboxd-status {
  color: #888;
  font-size: 13px;
  margin-bottom: 8px;
}
