/* Status Specific Styles */
.status-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.status-wrapper h1 {
    color: #667eea;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #e9ecef;
}

#status-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#status-info p {
    font-size: 1.2em;
    color: #495057;
    margin: 10px 0;
}

.status-online { color: #2ecc71; font-weight: bold; }
.status-offline { color: #e74c3c; font-weight: bold; }
.status-starting { color: #f1c40f; font-weight: bold; }

.status-hint {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.motd {
    margin-top: 15px;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 4px;
    font-family: monospace;
    color: #ccc;
    line-height: 1.4;
}

.player-count {
    margin-top: 20px;
    font-size: 1.3rem;
    color: #495057;
    font-weight: 600;
}

.player-list {
    margin-top: 30px;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.player-list h3 {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.player-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.player-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #333;
}

.player-grid img {
    border-radius: 4px;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .status-wrapper {
        margin: 20px;
        padding: 20px;
    }

    .status-wrapper h1 {
        font-size: 2em;
    }
}
