/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f0f2f5;  /* Light neutral background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

.container {
  text-align: center;
  padding: 30px 25px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 450px;
}

h1 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #222;
}

.video-wrapper {
  margin-bottom: 20px;
}

video {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #ccc;
  transition: 0.3s ease-in-out;
}

button {
  background: #4caf50; /* Soft green */
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s ease;
}

button:hover {
  background: #45a049;
}

#status {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #555;
}
