.shot-single-view {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px 350px 20px; /* Added bottom padding to account for gen_palette */
  display: flex;
  margin-top: calc(var(--navbar-min-height) + var(--gallery-nav-min-height));
  /* margin-top: 300px; */
  flex-direction: column;
  min-height: calc(100vh - 400px); /* Account for nav and gen_palette */
}

.shot-main-content {
  width: 100%;
  /* max-height: 70vh; */ /* Remove max-height restriction for dialogue view */
  /* background: #7c5d5d; */
  /* border-radius: 12px; */
  overflow: visible; /* Changed from hidden to visible for dialogue */
  display: flex;
  align-items: flex-start; /* Changed from center for dialogue list */
  justify-content: flex-start; /* Changed from center for dialogue list */
  position: relative;
  flex: 1;
  /* margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

[data-theme="dark"] .shot-main-content {
  background: var(--bg-light-gray);
  /* border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); */
}

.shot-main-image,
.shot-main-video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

[data-theme="dark"] .shot-main-image {
  filter: brightness(0.95);
}

[data-theme="dark"] .shot-main-video {
  filter: brightness(0.95);
}

.shot-main-generating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  gap: 20px;
}

.shot-main-generating .generating-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #4a9eff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

[data-theme="dark"] .shot-main-generating .generating-spinner {
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: #4a9eff;
}

.shot-main-generating .generating-text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[data-theme="dark"] .shot-main-generating .generating-text {
  color: #999;
}

.shot-main-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  gap: 15px;
  color: #999;
}

[data-theme="dark"] .shot-main-placeholder {
  color: #666;
}

.shot-main-placeholder i {
  font-size: 48px;
}

.shot-main-placeholder p {
  margin: 0;
  font-size: 16px;
}

.shot-info {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .shot-info {
  background: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shot-meta h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

[data-theme="dark"] .shot-meta h2 {
  color: #f0f0f0;
}

.shot-description {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .shot-description {
  color: #999;
}