/* === Блок мониторинга серверов — Minecraft Pixel Style === */
.server-monitor {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    background: #8b5a2b url('https://i.ibb.co/rb2TWXL/bgbtn.png') repeat;
    border: 3px solid #000;
    padding: 12px;
    image-rendering: pixelated;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    z-index: 10;
    font-family: 'Press Start 2P', cursive;
    font-size: 6pt;
    line-height: 1;
    color: #ddd;
    text-shadow: 1px 1px #000;
}

.server-monitor h3 {
    font-size: 8pt;
    text-align: center;
    margin-bottom: 10px;
    color: #ffd700;
    text-shadow: 1px 1px #000;
}

.server-list {
    list-style: none;
}

.server-item {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
    border-bottom: 1px solid #5d4037;
}

.server-item:last-child {
    border-bottom: none;
}

.server-name-line {
    font-size: 7pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    color: #ffffff;
    text-shadow: 1px 1px #000;
    width: 100%;
    text-align: left;
}

.server-status-line {
    font-size: 6pt;
    margin-bottom: 3px;
    width: 100%;
}

.status.online { color: #4caf50; }
.status.offline,
.status.error { color: #f44336; }

.server-players-bar-line {
    width: 100%;
    margin-bottom: 2px;
}

.players-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border: 1px solid #000;
    border-radius: 0;
    overflow: hidden;
    image-rendering: pixelated;
}

.players-bar.disabled {
    background: #444;
    opacity: 0.7;
}

.players-fill {
    height: 100%;
    background: #4caf50;
    width: 0;
    transition: none;
}

.server-players-count-line {
    width: 100%;
    text-align: right;
    font-size: 6pt;
}

.players-count {
    color: #ddd;
    text-shadow: 1px 1px #000;
}
