/* FONT (KEEP AS IS, JUST TWEAKED LETTER-SPACING) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

#server-status-bar,
.server-status-row,
.status-item,
.status-item .label,
.status-item .value {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
                 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3px;  /* 1px is too wide for small text, can cause jitter */
}

/* SERVER STATUS WRAPPER */
#server-status-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;          /* straight black background */
    padding: 6px 0;
    z-index: 999;            /* higher than the menu */
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #777;
}

/* STATUS BAR BACKGROUND */
.server-status-row {
    display: flex;
    gap: 25px;             /* can be adjusted */
    padding: 4px 8px;     /* can be adjusted */

    border-radius: 10px;
    backdrop-filter: blur(4px);
    align-items: center;
}

/* STATUS BOX */
.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;  /* label on left, value on right */
    gap: 6px;

    padding: 4px 10px;

    background: #222222;
    border: 1px solid #333;
    border-radius: 6px;

    color: #ffffff;

    flex-shrink: 0;   /* don't let the box shrink */
    min-width: 150px; /* makes all boxes same width; adjust as you like */
}

/* LABEL + VALUE */
.status-item .label {
    font-weight: 600;
    color: #d0d0d0;
    white-space: nowrap;
}

/* 🔒 KEY PART: RESERVE SPACE FOR VALUE */
.status-item .value {
    font-weight: 700;
    display: inline-block;

    min-width: 60px;     /* adjust depending on longest value */
    text-align: right;   /* keeps numbers/ON/OFF aligned */
    white-space: nowrap;
}

/* STATUS COLORS */
.value.on {
    color: #3cff73;
}

.value.off {
    color: #ff4a4a;
}

.value.neon {
    color: #7bd3ff;
}
