/* ==========================================================
   GLOBAL
   ========================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 20px;

    font-family: Arial, Helvetica, sans-serif;

    background: #f4f4f4;
    color: #222;
}


/* ==========================================================
   PAGE
   ========================================================== */

#page {

    max-width: 1800px;

    margin: auto;

}


header{

    text-align:center;

    margin-bottom:20px;

}


h1{

    margin:0;

    font-size:2rem;

}


h2{

    margin-top:8px;

    color:#666;

    font-weight:normal;

}



/* ==========================================================
   MAIN LAYOUT
   ========================================================== */

#mainContainer{

    display:flex;

    align-items:flex-start;

    gap:20px;

}



/* ==========================================================
   SCORE
   ========================================================== */

#scoreContainer{

    position:relative;

    flex:3;

}


/* image never exceeds container */

#scoreImage{

    display:block;

    width:100%;

    height:auto;

    border:1px solid #999;

}


/* layer that holds hotspots */

#hotspotLayer{

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

}



/* ==========================================================
   HOTSPOTS
   ========================================================== */

.hotspot{

    position:absolute;

    cursor:pointer;

    border:2px solid rgba(255,0,0,0);

    background:rgba(255,255,0,0);

    transition:.15s;

}



/* desktop hover */

.hotspot:hover{

    border:2px solid red;

    background:rgba(255,255,0,.25);

}



/* selected hotspot */

.hotspot.active{

    border:2px solid #0066ff;

    background:rgba(0,102,255,.20);

}



/* ==========================================================
   INFORMATION PANEL
   ========================================================== */

#infoPanel{

    flex:1;

    min-width:280px;

    max-width:380px;

    background:white;

    border:1px solid #bbb;

    border-radius:8px;

    padding:20px;

    overflow-y:auto;

    max-height:85vh;

}


#infoPanel h3{

    margin-top:0;

}


#infoContent{

    line-height:1.5;

}



/* ==========================================================
   LINKS
   ========================================================== */

a{

    color:#0066cc;

}


a:hover{

    text-decoration:none;

}



/* ==========================================================
   TABLES
   ========================================================== */

table{

    border-collapse:collapse;

    width:100%;

}


td{

    padding:6px;

    vertical-align:top;

}



/* ==========================================================
   IMAGES INSIDE INFO PANEL
   ========================================================== */

#infoContent img{

    max-width:100%;

    height:auto;

}



/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width:1000px){

    #mainContainer{

        flex-direction:column;

    }

    #infoPanel{

        width:100%;

        max-width:none;

        max-height:none;

    }

}