.machine-list {
    display: grid;
    gap: 10px;
}

.machine-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.machine-item.offline {
    border-left-color: #dc3545;
}

.machine-info {
    flex: 1;
}

.machine-info h3 {
    margin-bottom: 5px;
    color: #333;
}

.machine-info p {
    color: #666;
    font-size: 14px;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-online {
    background: #28a745;
    color: white;
}

.status-offline {
    background: #dc3545;
    color: white;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
}