
.server-status {
    padding: 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: 0 auto;
}

.players-online {
    margin-bottom: 10px;
    font-size: 16px;
}

.players-online .label {
    color: #915321;
}

.players-online .count {
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.indicator-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.indicator-dot.online {
    background-color: #4CAF50;
}

.indicator-dot.offline {
    background-color: #F44336;
}

.status-text {
    color: #06f019;
    font-size: 14px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
