@import url('https://fonts.googleapis.com/css2?family=Jura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Beastly:wght@300..700&family=Rubik+Beastly&display=swap');

body {
    margin: auto;
    height: 100%;
    width: 800px;
    max-width: 100%;
    background-color: black;
    color: white;
    
}

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: transparent;
}

.main {
    max-width: 100%;
    text-align: center;
    font-family: monospace;
    width: 800px;
    height: 400px;
    margin: auto;
    padding: 10px

}

.rooms {
    z-index: 0;
    max-width: 100%;
    width: 800px;
    margin: auto;
}


.toybox {
    height: 90px;
    width: 120px;
    margin: auto;
    z-index: 0;
    padding: 5px;
    margin-top: 5px;
    position: absolute;
    top: 70%;
    left: 85%;
    border: 1px dotted white;
    border-left: 0px;
    border-top: 0px;
}


.flex-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    height: 100px;
    
}


details {
    margin: auto;
    width: 350px;
    background: black;
    overflow: scroll;
    height: 140px;
    
}


summary {
    border: 1px dotted white;
    padding: 5px;
    background: black;
    
    
    
}

details > p {
    padding: 5px;
    
    
}


.tooltip {
    display: inline-block;
    position: relative;
    top: 65%;
}

.tooltip > img {
    max-width: 100%;
    width: 52px;
    height: 74px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    max-width: 100%;
    width: 100px;
    text-align: center;
    word-wrap: normal;
    position: static;
    display: block;
    color: white;
    font-size: 13px;
    background-color: black;
    border: solid 1px white;
    padding: 5px;
    margin: auto;
    
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    max-width: 100%;
    z-index: 5;
    font-family: "jura";
    font-weight: bold;
    display: block;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    color: white;
    max-height: auto;
    background-color: black;
    border-bottom: 1px dotted white;
}