@import url("../../shared/shared.css?v=20250218002");

#queue-playing-now-vid{
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 480px;
}

section{
    min-height: 0px !important;
    color: var(--alt-color);
}

#session-client{
    align-items: center !important;
    #videos{
        width: fit-content;
        height: fit-content;
        gap: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 50px;
        margin-right: auto;
        max-width: 100%;
        .video{
            width: 200px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            background-color: var(--alt-color);
            border-radius: var(--border-rad);
            border-width: 2px;
            border-style: solid;
            border-color: var(--alt-color);
            p{
                padding: 0px 5px 0px 5px;
                height: 50px;
                overflow: hidden;
                color: var(--base-color);
            }
            img{
                aspect-ratio: 4/3;
                border-radius: var(--border-rad);
                height: 150px;
            }
            a{
                margin-top: 5px;
                background: var(--base-color);
                color: var(--alt-color);
            }
        }
    }
}

#session-host{
    #host-code{
        p{
            margin: 0px;
        }
        h2{
            color: var(--alt-color)
        }
    }
    #host-queue{
        margin-top: 10px;
        #queue-playing-now{
            h2{
                color: var(--alt-color);
            }
            p{
                margin-top: 0px;
            }
        }
        #queue-controls{
            display: flex;
            height: 50px;
            justify-content: center;
            a{
                display: grid;
                place-items: center;
                padding: 0px;
                height: 100%;
                aspect-ratio: 1/1;
                svg{
                    width: 50%;
                    fill: var(--base-color);
                }
            }
            input{
                margin-left: 5%;
                height: 100%;
                accent-color: var(--alt-color);
            }
        }
        #queue-soon{
            p{
                margin: 0px;
                color: var(--alt-color)
            }
            .queue-soon{
                background: var(--alt-color);
                border-radius: var(--border-rad);
                font-weight: normal;
                display: flex;
                height: 50px;
                margin-bottom: 5px;
                .queue-soon-info{
                    color: var(--base-color);
                    padding-left: 10px;
                    padding-right: 10px;
                    height: 100%;
                    line-height: 100%;
                    overflow-wrap: anywhere;
                    overflow: hidden;
                }
                .queue-soon-image{
                    border-radius: var(--border-rad);
                    aspect-ratio: 4/3;
                    height: 100%;
                    box-sizing: border-box;
                }
            }
        }
    }
}