html{
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    background-color: #fffdf8;
    min-width: 800px;
}

.site-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.title{
    font-size: 2rem;
}

.navigation{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navigation a{
    text-decoration: none;
    font-size: 1.2rem;
    color: inherit;
}

.navigation img{
    width: 25x;
    height: 25px;
    margin: 5px;
}

.disclaimer{
    text-align: center;
    font-size: 18px;
    color:gray;
    margin: 30px 100px;
}

.flex-container{
    padding: 20px;
    display: flex;
    align-items: stretch;
    gap: 20px;
}

/* SIDEBAR CSS */

.sidebar-container{
    flex: 3;
    display: flex;
    flex-direction: column;

    width: 200px;
    min-height: 0;

    border: 3px solid;
    border-radius: 6px;
    background-color: rgb(250, 237, 208);
    box-shadow: 5px 5px 0px 0px #000000ff;
}

.sidebar-container p {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin: 15px;
}

.scrollable-container{
    overflow-y: auto;
    flex: 1 1 0;
}

.search-input {
    width: 100%;
    height: 40px;
    border-right: hidden;
    border-left: hidden;

    align-self: center;

    background-color: #f6f3f9;


    box-sizing: border-box;
    padding: 20px;
}

.search-input:focus{
    outline: none;
    box-shadow: none;
}

.fandom{
    border: 2px solid;
    margin: 8px;
    padding: 15px;
    background-color: #f6f3f9;
}

/* MAP CSS */

.map-container{
    flex: 7;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
    position: relative;
}

.map-image{
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.pin {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50% 50% 50% 0;
    background: #ff5b5b;
    transform: rotate(-45deg);
    margin: -20px 0 0 -20px;
    top: 20%;
    left: 30%;

    &::before{
        content: '';
        width: 11px;
        height: 11px;
        margin: 7px 0 0 7px;
        background: #2F2F2F;
        border-radius: 50%;
        position: absolute;
    }

    outline: 3px solid black;
}

.pin:hover {
    transform: scale(1.1) rotate(-45deg);
    background: rgb(240, 217, 84);
    z-index: 3;
}

.pin:hover .pin-info {
    display:flex;
}

.pin-info{
    position: relative;
    transform: translateX(-50%) rotate(45deg);
    text-align: center;
    justify-content: center;
    display: none;
    bottom: 2rem;
    left: 2.5rem;
}

.pin-info span{
    border: 2px solid black;
    background-color: white;
    white-space: nowrap;
    padding: 5px 10px;
}
