/* New file: saved-scenes.css */
#saved-scenes-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none; /* shown by saved-scenes.js */
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

#saved-scenes-modal .modal-content {
  background: #252525;
  border-radius: 8px;
  width: 80%;
  max-width: 800px;
  max-height: 80%;
  overflow-y: auto;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#saved-scenes-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#saved-scenes-modal .modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #64B5F6;
}

#saved-scenes-modal #close-saved-scenes {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

#saved-scenes-modal .modal-body {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.saved-scene-item {
  background: #333;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 0.5rem;
}

.saved-scene-item img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.scene-timestamp {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #aaa;
}

