body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}


#game-container {
    margin: 1%;
}

#map-container {
    background-image: url('../images/background.png');
    position: relative;
    width: 100%;
    height: 600px; 
    margin: auto;
    padding-top: 20px;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}


#inventory {
    margin: 10px;
}

#inventory-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    list-style-type: none;
    padding: 0;
}

#inventory-list li {
    background-color: #e0e0e0;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}



.location {
    transition: border 0.3s ease-in-out;
    position: absolute;
    display: block;
    width: 150px;
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px; 
}

.location-tooltip {
    position: absolute; 
    display: none;
    background-color: #333; 
    color: #fff; 
    padding: 5px; 
    border-radius: 4px;
    font-size: 12px; 
    white-space: nowrap;
    z-index: 999; 
    pointer-events: none;
}

.location:hover .location-tooltip {
    display: block;  /* Show tooltip on hover */
}



.location:not(.buildable) {
    border: 2px dashed red;
}
.location.buildable {
    border: 2px solid green;
}
