body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.webinar-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#webinar-video {
    width: 100%;
    height: auto;
    display: block;
}

.live-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 14px;
    z-index: 10;
}

.video-description {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
}
.button:hover {
    background-color: #45a049;
}