/* Server Status Styles */
.server-status {
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    text-align: center;
    font-family: monospace;
    font-size: 14px;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
    top: 1px;
}

.status-indicator.online {
    background-color: #2ecc71;
    box-shadow: 0 0 5px #2ecc71;
}

.status-indicator.offline {
    background-color: #e74c3c;
    box-shadow: 0 0 5px #e74c3c;
}

.status-indicator.connecting {
    background-color: #f39c12;
    box-shadow: 0 0 5px #f39c12;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

#game-id {
    margin-top: 5px;
    font-size: 12px;
    color: #aaa;
} 