body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4e4d4;
}
.game-container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    background-color: #e0d0c0;
}
.top-bar {
    background-image: linear-gradient(to bottom, #8b4513, #654321);
    color: #ffd700;
    padding: 5px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.top-bar a {
    background: none;
    border: none;
    color: #ffd700;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 10px;
}
.resources {
    background-color: #d2b48c;
    padding: 5px;
    display: flex;
    justify-content: flex-end;
    font-size: 12px;
}
.resources span {
    margin-left: 15px;
}
.village-info {
    background-color: #e6d8b3;
    padding: 10px;
    border-bottom: 1px solid #8b4513;
}
.village-view {
    position: relative;
    height: 600px;
    background-image: url('https://via.placeholder.com/800x400?text=Visão+da+Aldeia');
    background-size: cover;
}
.building {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(139, 69, 19, 0.7);
    border: 1px solid #654321;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
.side-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background-color: rgba(210, 180, 140, 0.9);
    padding: 10px;
    box-sizing: border-box;
}
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-weight: bold;
}

.map-view{
    position: relative;
}