.dashboard-container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 220px;
    background-color: #2c3e50;
    color: white;
    padding-top: 20px;
}

    .sidebar ul {
        list-style: none;
        padding: 0;
    }

    .sidebar li {
        padding: 12px 20px;
        cursor: pointer;
        transition: background 0.2s;
    }

        .sidebar li:hover {
            background: #34495e;
        }

        .sidebar li.active {
            background: #1abc9c;
            font-weight: bold;
        }

.content {
    flex: 1;
    padding: 20px;
    background-color: #f4f6f8;
}


.hex-map {
    position: relative;
    width: 6000px;
    height: 6000px;
    background: #111;
}

.hex {
    position: absolute;
    width: 40px;
    height: 34px;
    clip-path: polygon( 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50% );
    border: 1px solid #222;
}

.hex-present {
    background-color: #4caf50; /* green */
}

.hex-missing {
    background-color: #e53935; /* red */
}

.hex-outside {
    background-color: #555; /* gray */
}
.hex-map {
    position: relative;
    width: 8000px;
    height: 8000px;
    background: #222;
}
.hex {
    position: absolute;
    width: 40px;
    height: 34px;
    clip-path: polygon( 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50% );
    background: magenta; /* TEMP: force visibility */
    border: 1px solid black;
}


.hex-map {
    position: relative;
    width: 8000px;
    height: 8000px;
    background: #111;
}

.hex {
    position: absolute;
    width: 40px;
    height: 34px;
    background: magenta; /* TEMP visibility */
    clip-path: polygon( 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50% );
    border: 1px solid black;
}

.hex-present {
    background: #4caf50;
}

.hex-missing {
    background: #e53935;
}

.hex-outside {
    background: #555;
}