.previewContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  gap: 12px;
}

.sliderFrame {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.slideContent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: white;
  z-index: 10;
}

.headline {
  margin: 0 0 16px 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  word-wrap: break-word;
}

.subheading {
  margin: 0 0 24px 0;
  font-size: 20px;
  line-height: 1.4;
  word-wrap: break-word;
}

.button {
  display: inline-block;
  padding: 12px 32px;
  background: #f58c00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid #f58c00;
}

.button:hover {
  background: #d67800;
  border-color: #d67800;
  transform: translateY(-2px);
}

.emptySlide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.emptyMessage {
  text-align: center;
  color: #999;
}

.emptyMessage p {
  margin: 0;
  font-size: 16px;
}

.emptyHint {
  font-size: 13px;
  margin-top: 8px !important;
  color: #ccc;
}

.sizeIndicator {
  font-size: 12px;
  color: #999;
  text-align: center;
}
