.videoWrapper {
    position: relative;
    width: 100%;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#server-instruction {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 157, 188, 0.05);
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instruction-text {
    font-size: 14px;
    font-weight: 600;
    color: #029dbc;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 20px;
}

#episode-servers {
    margin-bottom: 10px;
}

#episode-servers li.active a {
    background-color: #029dbc;
    color: #fff;
}

#episode-servers li:hover a {
    background-color: rgba(2, 157, 188, 0.1);
    color: #029dbc;
}

#episode-servers li.active:hover a {
    background-color: #029dbc;
    color: #fff;
    opacity: 0.9;
}

.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.error-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    color: #f44336;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-size: 16px;
}