.video-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Common Button Styling */
.video-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 16px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
}

.video-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Play Button */
.play-button {
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Stop Button */
.stop-button {
    bottom: 70px;
    display: none;
}

/* Unmute Button */
.unmute-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    font-size: 14px;
    padding: 6px 10px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
}

.unmute-button:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Start Free Trial Button */
.trial-button {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.trial-button:hover {
    color: #e65c00;
    background-color: white;
}

/* Ensure video fits container */
video {
    display: block;
    width: 100%;
    max-width: 800px;
}
.video-container img {
    display: block;
    width: 100%;
    max-width: 800px;
}
.trial-button-host {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #673de6;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.trial-button-host:hover {
    color: #673de6;
    background-color: white;
}