/* =============================
    Basic page styles
    ============================= */
body {
    font-family: sans-serif;
    background: #fff;
    color: #333;
    padding: 30px;
}

button {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    font-size: 14px;
    background: #222;
    color: #eee;
    border: 1px solid #555;
    cursor: pointer;
}

button:hover {
    background: #333;
}


#fs{
    width:100%;
    text-align:center;
}

#fs a{
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    font-size: 14px;
    background: #222;
    color: #eee;
    border: 1px solid #555;
    cursor: pointer;
}

/* =============================
    Stage container
    ============================= */
#stage {
    position: relative;
    width: 256px;
    height: 384px;
    margin: 20px auto;  /* <-- auto horizontally centers */
    background: black;
    overflow: hidden;
    border: 3px solid #000;
}


/* =============================
    Stage children (image + videos)
    ============================= */
#stage > * {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* preserve aspect ratio */
    display: none;       /* hide all by default */
}

#still {
    display: block; /* show still initially */
}

#playlist-buttons {
    margin-top:10px;
}
#maintitle{
    padding:10px;
    border-top:2px solid #000;
    border-bottom:2px solid #000;
}