.video-faq-table {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
}

.question-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  width: 100%;
}

button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

.question-button {
  background: #386560;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
  width: 100%;
  transition: background 0.3s;
  white-space: normal;
  text-overflow: unset;
}

.question-button:hover {
  background: #2b4e4a;
}

.right-column {
  
  flex-shrink: 0;
}

.video-wrapper {
  position: relative;
  min-height: 300px;
  width: 360px; /* o el ancho aproximado del video */
  flex-shrink: 0;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-container.visible {
  opacity: 1;
  pointer-events: auto;
}

.video-container video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 800px) {
  .video-faq-table {
    flex-direction: column;
    align-items: center;
  }

  .question-list,
  .video-container {
    max-width: 360px;
    width: 100%;
  }

  .question-button {
    width: 100%;
  }
}
