.player-green { color: #4ae750; }
.player-blue { color: #24bce2; }
.player-red { color: #f44336; }
.player-yellow { color: #FFD700; }
.player-purple { color: #ba2cd3; }

:root {
    --debug-highlight-player: rgb(119, 238, 50);
    --debug-highlight-tile: rgb(192, 83, 235);
    --debug-highlight-sun-disk: rgb(34, 235, 208);
    --debug-highlight-auction: rgb(238, 72, 50);
    --debug-highlight-error: rgb(180, 7, 7);
    --debug-highlight-epoch: rgb(201, 201, 40);
}

 /* Fixed button on the right */
#infoButton {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 10px 16px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1000;
}

#debugModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#debugContent {
    background-color: rgb(61, 61, 61);
    padding: 20px;
    border-radius: 12px;
    max-width: 80vw;
    max-height: 80vh;
    text-align: center;
    overflow-y: auto;
}

#debugCloseButton {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #ecd342;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.debug-log-tile-image {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 8px;
}