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

.logo {
    pointer-events: none;
    position: absolute;
    top: 10%;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-50%);
    height: 10%;
    width: auto;
    z-index: 10;
}

.logo.fullscreen {
    position: absolute;
    top: 5%;
    left: 8%;
    /* width: 12%; */
    /* height: auto; */
    height: 10%;
    width: auto;
    transform: none;
    /* transform: translateX(+80%); */
    z-index: 10;
}

:fullscreen {
    background-color: black;
}

:-webkit-full-screen { /* Safari */
    background-color: black;
}

:-moz-full-screen { /* Firefox */
    background-color: black;
}

:-ms-fullscreen { /* IE */
    background-color: black;
}

#heygen-streaming-embed {
    top: 20%; /**/
    height: auto; 
    width: auto;
    position: absolute; /**/
    /* position: relative; */
    left: 50%; /**/
    transform: translateX(-50%); /**/
    max-width: 60%;
    max-height: 80%;
    border-radius: 0;
    border: 2px solid #fff;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: block;
    z-index: 1;
}

#heygen-streaming-embed.show {
    opacity: 1;
    visibility: visible;
    background-color: black;
}

#heygen-streaming-embed.expand {
    border: 0;
    border-radius: 0;
    position: fixed;
    top: 20%;
    background-color: black;
}

#heygen-streaming-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}

#heygen-streaming-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background-color: black;
    object-fit: contain; /* Maintain aspect ratio of iframe content */
}

#dropdown-container {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dropdown-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
}

.dropdown-group label {
    color: white;
    margin-bottom: 5px;
    font-size: 14px;
}

#dropdown, #avatar-dropdown {
    padding: 10px;
    font-size: 16px;
    width: 100%;
}

#submit-button {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 10px; /* Add margin to separate from the dropdown */
    background-color: grey;
    color: white;
    border: none;
    cursor: not-allowed;
    width: 200px; /* Match the width of the dropdown */
}

#submit-button.enabled {
    background-color: blue;
    cursor: pointer;
}