.image-to-video-container {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 30px auto;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #333;
}

.image-to-video-container h1 {
  margin-bottom: 20px;
  font-size: 24px;
}

.image-to-video-container input[type="file"],
.image-to-video-container textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.image-to-video-container button {
  background: #007bff;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.image-to-video-container button:hover {
  background: #0056b3;
}

#status {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

video {
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: none;
}
