body {
    background-color: #f2f2f2;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 40px 0;
    text-align: center;
}
  
h1 {
    text-transform: uppercase;
    font-size: 3em;
    margin-bottom: 40px;
}
  
.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
video {
    width: 80%;
    max-width: 800px;
    outline: none;
    pointer-events: none;
    margin-bottom: 20px;
}
  
/* shared styles */
.button {
    font-size: 1.2em;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    color: white;
    border-radius: 4px;
}
  
  /* specific colors */
.play-button {
    background-color: #007BFF;
}
  
.play-button:hover {
    background-color: #0056b3;
}
  
.finish-button {
    background-color: #28a745;
}
  
.finish-button:hover {
    background-color: #218838;
}


.return-link {
    margin-top: 40px;
    font-size: 0.9em;
    text-align: center;
}
  
.return-link a {
    text-decoration: none;
    color: #888;
    transition: color 0.3s;
}
  
.return-link a:hover {
    color: #444; /* darker gray on hover */
}

.content-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 5%;
    flex-wrap: wrap;
    align-items: center; /* Vertically center both columns */
}
  
.instruction-box {
    width: 300px;
    background-color: #d9d9d9;
    padding: 30px 25px;
    font-size: 0.95em;
    color: #333;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
  
.instruction-box ol {
    padding-left: 20px;
    margin: 10px 0;
    text-align: left;
}
  
.instruction-box li {
    margin-bottom: 10px;
}
  
.instruction-box h2 {
    font-size: 1.2em;
    margin-top: 0;
}
  
.video-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
video {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
    pointer-events: none;
    outline: none;
}
  